Viewing file: findmiss.php (4.84 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include('session.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Student Search </title> </head> <center> <body> <table width="100%" border="0" bgcolor="#FFFFFF"> <tr> <td ><?php include('header.php'); ?></td> </tr> <tr> <td colspan="2"><?php include('menubar.php'); ?></td> </tr> <tr> <td colspan="3" bgcolor="#CCCCCC"> <?php include('sessisionbar.php'); ?></td> </tr> <tr> <td colspan="2"> <table width="100%" border="0"> <tr> <td colspan="2" a bgcolor="#FFFFFF"><form action="" method="get" name="form"> Find Month Name <select name="q" id="q" required="required"> <option>JAN</option> <option>FEB</option> <option>MAR</option> <option>APRIL</option> <option>MAY</option> <option>JUNE</option> <option>JULY</option> <option>AUG</option> <option>SEPT</option> <option>OCT</option> <option>NOV</option> <option>DEC</option> </select> <select name="y" id="y" required="required"> <option>2018</option> <option>2019</option> <option>2020</option> </select> <input type="submit" name="Submit" value="Search" /> </form></td> </tr> </table> </td> <tr> <td>
<?php
// Get the search variable from URL
$var = @$_GET['q'] ; $trimmed = trim($var); $vary = @$_GET['y'] ; $trimmedy = trim($vary);//trim whitespace from the stored variable
// rows to return $limit=1022;
// check for an empty string and display a message. if ($trimmed == "") { exit; }
// check for a search parameter if (!isset($var)) { echo "<p>We dont seem to have a search parameter!</p>"; exit; }
mysql_connect("localhost","pccl_user","rb!pcl838"); //(host, username, password)
//specify database ** EDIT REQUIRED HERE ** mysql_select_db("pccl_data") or die("Unable to select database"); //select which database we're using
$field = 'jmonth'; $field2 = 'jyear'; // Build SQL Query $query = "select * from missadd where $field like \"$trimmed\" AND $field2 like \"$trimmedy\" AND branch='$user' order by $field"; // EDIT HERE and specify your table and field names for the SQL query
$numresults=mysql_query($query); $numrows=mysql_num_rows($numresults);
// If we have no results, offer a google search as an alternative
if ($numrows == 0) { echo " Sorry, $trimmed this Number is not found";
}
// next determine if s has been passed to script, if not use 0 if (empty($s)) { $s=0; }
// get results $query .= " limit $s,$limit"; $result = mysql_query($query) or die("Couldn't execute query");
// begin to show results set $count = 1 + $s ;
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"1\">\n"; echo " <tr>\n"; echo " <td width=\"171\" align=\"left\" valign=\"top\" bgcolor=\"#33FFCC\">BRANCH</td>\n"; echo " <td width=\"171\" align=\"left\" valign=\"top\" bgcolor=\"#33FFCC\">Discription</td>\n"; echo " <td width=\"171\" align=\"left\" valign=\"top\" bgcolor=\"#33FFCC\">Release Date</td>\n"; echo " <td width=\"171\" align=\"left\" valign=\"top\" bgcolor=\"#33FFCC\">Amount</td>\n"; echo " </tr>\n"; echo "</table></form>\n"; echo "\n";
// now you can display the results returned while ($row= mysql_fetch_array($result)) { echo "<table width=\"100%\" border=\"1\" cellspacing=\"0\" cellpadding=\"1\">\n"; echo " <tr>\n"; echo " <td width=\"171\" align=\"left\" valign=\"top\" bgcolor=\"#33FFCC\">$row[branch]</td>\n"; echo " <td width=\"171\" align=\"left\" valign=\"top\" bgcolor=\"#33FFCC\">$row[discription]</td>\n"; echo " <td width=\"171\" align=\"left\" valign=\"top\" bgcolor=\"#33FFCC\">$row[jdate]/$row[jmonth]/$row[jyear]</td>\n"; echo " <td width=\"171\" align=\"left\" valign=\"top\" bgcolor=\"#33FFCC\">$row[amount]</td>\n"; echo " </tr>\n"; echo "</table>"; echo "\n"; $count++ ; }
$currPage = (($s/$limit) + 1);
//break before paging echo "";
// next we need to do the links to other results if ($s>=1) { // bypass PREV link if s is 0 $prevs=($s-$limit); print "<a href=\"$PHP_SELF?s=$prevs&q=$var\"><< Prev 10</a> "; }
// calculate number of pages needing links $pages=intval($numrows/$limit);
// $pages now contains int of pages needed unless there is a remainder from division
?>
</td> </tr> <tr> <td colspan="2"> </td> </tr> <tr> <td colspan="2"> </td> </tr> <tr> <td colspan="2"><?php include('footer.php'); ?></td> </tr> </table> </body></center> </html>
|