Hi all, when out putting data to my webpage i keep getting “resource id #” and then a number that seems to be counting up with each one that is displayed. I can only assume its struggling to display what ever it is that it need to display OR there is nothing to display ???
This is the code that is generating the output.
<?php $loc = mysql_query("select * from squares where callsign like '%$dxcall%' limit 1"); While ($r1 = mysql_fetch_array($loc)) { $call = $r1["call"]; $loc = $r1["loc"]; $other = $r1["other"]; } ?>thanks all !!