Hi, I have this option in form that takes you to another page:
<option value="<?php print($row["conditions"]);?>"><?php print($row["id_propiedad"]); ?></option>
This is a link that is in the database: "<?php print($row["conditions"]);?>"
This works perfect,
however now I want to do soemthing similar, however the link is not in the database, so I only get the id (nombre) from the database and I add the link manually, however I get error, all kinds of colors lol, and cant see what I am doing wrong.
I am trying to do this:
<option value="<?php print "<a href=ver_casas_alquilar.php?nombre=".$row["nombre"].";>?>"><?php print($row["nombre"]); ?></a></option>
Any help would be aprreciate, think I have tried all, but obviously I have not :)
Thanks,
Helen