3v4l.org

run code in 300+ PHP versions simultaneously
<html> <head><title>Process</title></head> <body> <?php $error = ""; //check is field left empty //process registrarion form //checks that the form was actually submitted if($_POST['sub']) //submit button sub { //validation (server side) if ($_POST['name'] == "") //name = "name" $error .="Full name not entered <br />"; if(!isset($_POST['agree'])) //agree for TOS at form.php $error .="You must agree to the TOS"; if(!preg_match("/^\d{3}\.\d{3}\.\d{4}$/",$_POST['phone'])) $error .= "Invalid Phone Number"; //check if errors were found if($error !="") echo "<div style ='color:red;'>$error</div>"; } ?> </body> <html>
Output for git.master, git.master_jit, rfc.property-hooks
<html> <head><title>Process</title></head> <body> Warning: Undefined array key "sub" in /in/LGYvB on line 12 </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:
54.42 ms | 401 KiB | 8 Q