I have a form I generated with PHPform that I have set to enter the results into a SQL database. I want to display the email address of the people that check the "OkToSpam" box Im a newb at PHP and in my mind this should work... but it dont:
<?php
mysql_connect("localhost", "******", "******") or die(mysql_error()); mysql_select_db("dslforms") or die(mysql_error());
$data = mysql_query("SELECT * FROM dslprospect") or die(mysql_error());
Print "<b>Coma Separated List:</b><br>";
while($info = mysql_fetch_array( $data ))
{
if ($info['OkToSpam']=="on");
Print " ".$info['Email'] . ", ";
else
echo "<br>";
}
?>
And yes I have the tables created and they can be accessed easily outside of the "if" part