affordit Posted February 11, 2008 Share Posted February 11, 2008 Can anyone see where I messed up displays the table but no records? I inserted 6 test records. <?php session_start(); // start up your PHP session! include("client_info3.php"); include("top_mid_nav.inc"); include("sharons_dbinfo2.inc.php"); mysql_connect(mysql,$name,$password); mysql_select_db($database) or die( "Unable to select database"); @$sql = "Select * from content"; $results = mysql_query($sql) or die(mysql_error()); $count=mysql_num_rows($result); ?> <table width="400" border="0" cellspacing="1" cellpadding="0"> <tr> <td><form name="form1" method="post" action=""> <table width="400" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td bgcolor="#FFFFFF"> </td> <td colspan="4" bgcolor="#FFFFFF"><strong>Delete multiple records</strong> </td> </tr> <tr> <td align="center" bgcolor="#FFFFFF"><strong>Item</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Heading</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Picture</strong></td> <td align="center" bgcolor="#FFFFFF"><strong>Description</strong></td> </tr> <?php while($rows=mysql_fetch_array($result)){ ?> <tr> <td align="center" bgcolor="#FFFFFF"><input name="checkbox[]" type="checkbox" id="checkbox[]" value="<? echo $rows['item']; ?>"></td> <td bgcolor="#FFFFFF"><? echo $rows['item']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['heading']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['picture']; ?></td> <td bgcolor="#FFFFFF"><? echo $rows['description']; ?></td> </tr> <?php } ?> <tr> <td colspan="5" align="center" bgcolor="#FFFFFF"><input name="delete" type="submit" id="delete" value="Delete"></td> </tr> <? // Check if delete button active, start this if($delete){ for($i=0;$i<$count;$i++){ $del_id = $checkbox[$i]; $sql = "DELETE FROM content WHERE item='$del_id'"; $result = mysql_query($sql); } if($result){ echo "<meta http-equiv=\"refresh\" content=\"0;URL=change_products.php\">"; } } mysql_close(); ?> </table> </form> </td> </tr> </table> Link to comment https://forums.phpfreaks.com/topic/90526-records-not-displaying/ Share on other sites More sharing options...
revraz Posted February 11, 2008 Share Posted February 11, 2008 Same as I posted in your other thread. You use $result and $results $results = mysql_query($sql) or die(mysql_error()); $count=mysql_num_rows($result); Link to comment https://forums.phpfreaks.com/topic/90526-records-not-displaying/#findComment-464140 Share on other sites More sharing options...
revraz Posted February 11, 2008 Share Posted February 11, 2008 And looking farther down, you use $result again and you use <? short tags. Link to comment https://forums.phpfreaks.com/topic/90526-records-not-displaying/#findComment-464142 Share on other sites More sharing options...
affordit Posted February 11, 2008 Author Share Posted February 11, 2008 Thanks I looked for that and still missed it Link to comment https://forums.phpfreaks.com/topic/90526-records-not-displaying/#findComment-464143 Share on other sites More sharing options...
PFMaBiSmAd Posted February 11, 2008 Share Posted February 11, 2008 When learning php, developing php code, or debugging php code, turning on full php error reporting to get php to help you, will find things like code that references variable names that don't exist. Link to comment https://forums.phpfreaks.com/topic/90526-records-not-displaying/#findComment-464159 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.