Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //INDEX.HTML
- <html>
- <h1>CONVERSOR DE MILISSEGUNDOS PAWN </h1>
- <h2>Segundos</h2>
- <form action="segundos.php" method="POST">
- <input type="text" name="csegundos"/>
- <input type="submit" value="Converter"/>
- </form>
- </br>
- <h2>Minutos</h2>
- <form action="minutos.php" method="POST">
- <input type="text" name="cminutos"/>
- <input type="submit" value="Converter"/>
- </form>
- </br>
- <h2>Horas</h2>
- <form action="horas.php" method="POST">
- <input type="text" name="choras"/>
- <input type="submit" value="Converter"/>
- </form>
- </html>
- //SEGUNDOS.PHP
- <h1> Convertido =</h1>
- <?php
- $result = $_POST["csegundos"] * 1000;
- echo $result;
- ?>
- //MINUTOS.PHP
- <h1> Convertido =</h1>
- <?php
- $result = $_POST["cminutos"] * 60000;
- echo $result;
- ?>
- //HORAS
- <h1> Convertido =</h1>
- <?php
- $result = $_POST["choras"] * 3600000;
- echo $result;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment