3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (!$_post['email'] || $_post['email'] == "" || strlen($_post['email']) && $_post['email'] > 30){ echo '<P>Is je emailadres echt zo lang?</P>'; } else { //Open connection to de database mysql_connect("localhost", "root", "") or die("Kan geen contact maken met de database"); mysql_select_db("test"); //Insert mail address $as_email = mysql_real_escape_string($_post['email']); $tr_email = trim($as_email); $QUERY = "INSERT INTO mailinglist (ID, Email, Source) VALUES(NULL, '$tr_email', 'www.example.com/newsletter_signup.html') "; $result = mysql_query($QUERY); if (mysql_affected_rows() == 1) { echo '<P>Your information has been recorded.</P>'; } else { error_log(mysql_error()); echo '<P>Somthing went wrong with your signup attempt.</P>'; } } ?>
Output for git.master, git.master_jit
Warning: Undefined variable $_post in /in/buOKI on line 2 Warning: Trying to access array offset on value of type null in /in/buOKI on line 2 <P>Is je emailadres echt zo lang?</P>
Output for rfc.property-hooks
Warning: Undefined variable $_post in /in/buOKI on line 2 Warning: Trying to access array offset on null in /in/buOKI on line 2 <P>Is je emailadres echt zo lang?</P>

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:
38.58 ms | 401 KiB | 8 Q