Jump to content

tlebeau925

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Everything posted by tlebeau925

  1. Thanks, that worked perfectly! PHP is so complex ><
  2. 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
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.