Jump to content

elsafraslastra

New Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by elsafraslastra

  1. I mean that it could be two pages, one with the buttons enabled (admin) and the other only showing the elapsed time (client). And transfer from one page to another the value of the variables. Do you think it will be possible?
  2. Hello, I need a code to create a stopwatch (on the server side with start, stop and pause) to be able to be seen by several clients in real time while it is running (only see it without being able to stop, start or pause). Thank you so much.
  3. With this routine you can check severals hosts and put in a table (must insert an up and down image). <?php $counterx = 0; echo "<table border=2 align=center>"; echo "<th>Servidor Externo</th>"; echo "<th>Est.</th>"; echo "<th>Puerto</th>"; echo '<br>'; echo '<br>'; $hostx[1] = 'www.domain1.com'; $hostx[2] = 'www.domain2.com'; $hostx[3] = 'www.domain3.com'; $port[1] = '80'; $port[2] = '443'; $port[3] = '21'; foreach ($hostx as $value) { $counterx = $counterx + 1; $connection = @fsockopen($hostx[$counterx], $port[$counterx]); if (is_resource($connection)) { echo "<tr><td width=150 style='font-size:80%'>$hostx[$counterx]</td>"; echo "<td width=10><img src='up.png'></td>"; echo "<td width=20 style='font-size:80%'>$port[$counterx]</td>"; fclose($connection); } else { echo "<tr><td width=150 style='font-size:80%'>$hostx[$counterx]</td>"; echo "<td width=10><img src='down.png'></td>"; echo "<td width=20 style='font-size:80%'>$port[$counterx]</td>"; } } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.