I have added it:
PHP Code:
<script type="text/javascript"> function checkall(delchk) { for (i = 0; i < delchk.length; i++) delchk[i].checked = true; } </script>
<script type="text/javascript"> function uncheckall(delchk) { for (i = 0; i < delchk.length; i++) delchk[i].checked = false; } </script>
<?php include("inc/config.php"); if (isset($_POST['del'])) { for ($count = 0;$count<count($_POST[delchk]);$count++) { $delete = $_POST[delchk][$count]; $query = "DELETE FROM accounts WHERE id = '$delete'"; $result = mysql_query($query); if (!$result) { die("Error deleting accounts! Query: $query<br />Error: ".mysql_error()); } } } echo "<table class=\"gridtable\"> <thead> <tr> <th align=\"center\" scope=\"col\">Username</th> <th align=\"center\" scope=\"col\">Password</th> <th align=\"center\" scope=\"col\">Highscores</th> <th align=\"center\" scope=\"col\">Date</th> <th align=\"center\" scope=\"col\">IP Address</th> <th align=\"center\" scope=\"col\">Status</th> <th align=\"center\" scope=\"col\">Delete?</th> </tr> </thead> <tbody>"; echo "<form name = 'myform' action='' method='post'>"; $pagenum = (isset($_GET['pagenum'])) ? (int) $_GET['pagenum'] : 1; $data = mysql_query("SELECT * FROM accounts") or die(mysql_error()); $rows = mysql_num_rows($data); $page_rows = 4; $last = ceil($rows/$page_rows); if ($pagenum < 1) { $pagenum = 1; } elseif ($pagenum > $last) { $pagenum = $last; } $max = 'limit ' .($pagenum - 1) * $page_rows .',' .$page_rows; $data_p = mysql_query("SELECT * FROM accounts $max") or die(""); while($info = mysql_fetch_array( $data_p )) { echo "<tr align=\"center\">"; echo "<td class=\"valid\" >" . $info['username'] . "</td>"; echo "<td class=\"valid\" >" . $info['password'] . "</td>"; echo "<td><a target=frame2 href='" ."profile/hiscorepersonal.ws?user1=". $info['username'] ."'>Check Highscores</a></td>"; echo "<td>" . $info['addeddate'] . "</td>"; echo "<td>" . $info['ip'] . "</td>"; echo "<td><img src=\"img/invalid.png\" title=\"Account information: INVALID!\"/><img src=\"img/valid.png\" title=\"Account information: VALID!\"/></td>"; echo '<td><input type="checkbox" id="delchk" name="delchk[]" value="'.$info['id'].'" /></td>'; echo "</tr>"; } echo "</tbody>"; echo "</table>"; echo "<hr>"; echo "<input type='submit' name = 'del' value='Delete Selected'></form>"; echo "<input type='button' onclick='checkall(document.myform[\"delchk\"]);' value='Select All'>"; echo "<input type='button' onclick='uncheckall(document.myform[\"delchk\"]);' value='Deselect All'>"; echo "<hr>"; if ($pagenum == 1) { } else { echo " <a href='{$_SERVER['PHP_SELF']}?pagenum=1'>First</a> "; echo " | "; echo " "; $previous = $pagenum-1; $current = $pagenum; echo " <a href='{$_SERVER['PHP_SELF']}?pagenum=$previous'>$previous</a> "; echo " | "; } echo "$pagenum"; if ($pagenum == $last) { } else { $next = $pagenum+1; echo " | "; echo " <a href='{$_SERVER['PHP_SELF']}?pagenum=$next'> $next</a> "; echo " "; echo " | "; echo " <a href='{$_SERVER['PHP_SELF']}?pagenum=$last'>Last</a> "; } ?>
Basically when you view the page and view the source the code stops at
Code:
<form name = 'myform' action='' method='post'>
so it cuts of everything under it, like the footer and some other things.
That only happens when there are no records in the table, when there are the web page loads full working.
__________________
█ MY MSN: Sith717@Hotmail.com
█ PHP, HTML, and CSS Coding, Logo and Web Design - Professionally done.
█ PM me anytime for HTML, PHP or web design help. I will be glad to help you out.
|