I am using the mysql_fetch_Array function to store fields out of a database.
I was wondering if you could use, for example, $myrow["Artist"] twice, once in a query string, and another time as plain text. Ex
<a href=music.php?artist=<php echo $myrow["Artist"]; ?>"><php echo $myrow ["Artist"];?></a>
Would this work, or screw everything up?
Is there any other way I can do this?