I have this link:
A STYLE="text-decoration:none;" href="sponsor.php" TARGET="_blank">Schiller International University</a></font>
Along with the link I want to send information telling 'sponsor.php' what listing to grab from the database:
$sname = "Schiller International University";
this in the information the query needs on the next page:
$result = mysql_query("SELECT * FROM schools WHERE name=('$sname')",$db);
This way I only have one sponsor file and through the link I tell it what info to post. How do I do this?
Thanks in advance!