Hi Everyone
First let me say that this forum has been of great help to me, I'm a newbie and I have many things to learn, I'm not sure if I will either, it seems to complicated for me, so I confess that I envy most of you.
here is my problem today.
I would like to add a link to query Cross_Made,
This is the code I've tried, needless to say, it's not working.
<A HREF="#"><?php echo $row['Cross_Made'].;?>"<br>";
and I would like to add on click command.
can someone help me with this problem?
Thanks
onclick="window.opener.document.getElementById('cv').formname.value='search'"
<?PHP
mysql_connect("localhost", "xxxx_jdimino", "xxxx") or die(mysql_error());
mysql_select_db("xxx_xxx") or die(mysql_error());
$sql = "SELECT * FROM `ihsreg` ORDER BY `Cross_Made` ASC";
$results = mysql_query($sql);
while(($row = mysql_fetch_assoc($results)) !== false){
echo $row['Cross_Made']."<br>";
}
?>
onclick="window.opener.document.getElementById('cv').formname.value='search'"