3v4l.org

run code in 300+ PHP versions simultaneously
<html> <head> <title>Online PHP Script Execution</title> </head> <body> <?php $nume = isset($_POST["nume"]) ? $_POST["nume"] : ""; $prenume = isset($_POST["prenume"]) ? $_POST["prenume"] : ""; $varsta = isset($_POST["varsta"]) ? $_POST["varsta"] : ""; echo "<br>Nume ".$nume; echo "<br>Prenume ".$prenume; echo "<br>Varsta ".$varsta; ?> <form action="#" method="post"> <table> <tr> <td> Nume: </td> <td> <input type="text" name="nume" size="10"/> </td> </tr> <tr> <td> Prenume: </td> <td> <input type="text" name="prenume" size="10"/></td> </tr> <tr> <td> Varsta: </td> <td> <input type="text" name="varsta" size="10"/> </td> </tr> <tr> <td colspan="2"> <input type="submit" value="gigi"/> </td> </tr> </table> </form> </body> </html>
Output for git.master, git.master_jit, rfc.property-hooks
<html> <head> <title>Online PHP Script Execution</title> </head> <body> <br>Nume <br>Prenume <br>Varsta <form action="#" method="post"> <table> <tr> <td> Nume: </td> <td> <input type="text" name="nume" size="10"/> </td> </tr> <tr> <td> Prenume: </td> <td> <input type="text" name="prenume" size="10"/></td> </tr> <tr> <td> Varsta: </td> <td> <input type="text" name="varsta" size="10"/> </td> </tr> <tr> <td colspan="2"> <input type="submit" value="gigi"/> </td> </tr> </table> </form> </body> </html>

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
37.9 ms | 402 KiB | 8 Q