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/prashantkr/prashantkr/ |
<form name='ispStatus' method='post' enctype='multipart/form-data'>
<?php
$isp1 = shell_exec('ping 14.139.236.209 -c 1');
$isp2 = shell_exec('ping 136.233.10.1 -c 1');
echo "
<table border='1'>
<tr><td colspan='2'><font color='red'>ISP Router Status</font></td></tr>
<tr><td colspan='2'><font color='red'>N K N (BSNL) </font></td></tr>
<tr> <td>1-Gig Link </td><td align='center'>";
if (preg_match("/\bttl=\b/i", $isp1)) {
echo "<img src='up.jpg' height='25' width='25' />";
}else{
echo "<img src='down.jpg' height='25' width='25' />";}
echo "</td></tr>
<tr><td colspan='2'><font color='red'>JIO </font></td></tr>
<tr> <td>1-Gig Link </td><td align='center'>";
if (preg_match("/\bttl=\b/i", $isp2)) {
echo "<img src='up.jpg' height='25' width='25' />";
}else{
echo "<img src='down.jpg' height='25' width='25' />";}
echo "</td></tr>
</table>";
?>
</form>