Hi..
Any PHP code to display the IPaddress of all systems which are connected in a LAN ?
Thanks in advance
Hi..
Any PHP code to display the IPaddress of all systems which are connected in a LAN ?
Thanks in advance
Try this also
<?php
$i = 0;
while ($row=mysql_fetch_array($result)){
?>
<tr>
<form name="form1" action="submitAction.php" method="post">
<td width="72" ><input type="text" autocomplete=off readonly name="ProjectName<?php echo $row['No'];?>" value="<?php echo $row['ProjectName'];?>" size="20" style="font-size: 9"></font></td>
<td width="72" ><input type="text" autocomplete=off readonly name="DeviceType<?php echo $row['No'];?>" value="<?php echo $row['DeviceType'];?>" size="15" style="font-size: 9"></font></td>
<td width="64" ><input type="button" value="EDIT!" onClick="removeAlignment(<?php echo $i; ?>);"></font></td>
<td width="67" style="font-size: 12">
<select name="action" onChange="submitRequest(<?php echo $i; ?>);">
<option value=>Ongoing </option>
<option value="<?php echo $row['ProjectName'];?>">Complete</option>
<option value="<?php echo $row['No'];?>">Update</option>
</select>
</form>
</td>
</tr>
<?php
$i++;
}
?>