Ante todo gracias por las molestias en leer esto y en ayudarme si es posible.
Necesito hacer un ping con PHP, y tengo el siguiente código, que me devuelve los resultados.
Código HTML:
<form method="POST" name="makeping" action="makeping.php"> <TD><input type="text" name="ping" size="30" maxlength="30"></TD> <TD BGCOLOR="66FFCC"><input type="submit" value="PING" name="submit"></TD> </TR> </form>
Código PHP:
<?php
$ipx = $_POST['makeping'];
$ejecutar = `ping $ipx`;
echo "<body bgcolor=\"#0066FF\" text=\"#000000\" link=\"#0000FF\" alink=\"#FF0000\" vlink=\"#800080\">";
echo "Los Resultados Del Ping Para La IP# $ipx es :<br>";
echo "$ejecutar<br>";
?>
Muchas Gracias
Saludos.