kpetsche20 Posted June 28, 2008 Share Posted June 28, 2008 Problem, when someone clicks on submit only asdfadsf is displayed. Nothing in the loop is displayed and I"m sure that there is a value in the table school with the id of 1 that has a password. Here's the code if(isset($_POST['submit'])) { echo " asdfadsf"; $findpw = "SELECT * FROM school WHERE id = '1'"; $run = mysql_query($findpw); while($data2 = mysql_fetch_array($run)); { echo $data2['password']; } } Link to comment https://forums.phpfreaks.com/topic/112348-while-statement-problem/ Share on other sites More sharing options...
CMC Posted June 28, 2008 Share Posted June 28, 2008 Try this: <?phpif(isset($_POST['submit'])) { echo "asdfadsf"; $findpw = "SELECT * FROM school WHERE id = '1'"; $run = mysql_query($findpw) or die(mysql_error()); while($data2 = mysql_fetch_array($run)) { echo $data2['password']; } } Will check for errors and display to you if found and also removed a semi-colon ( at the end of your while line. Link to comment https://forums.phpfreaks.com/topic/112348-while-statement-problem/#findComment-576822 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.