3v4l.org

run code in 300+ PHP versions simultaneously
<?php include "config.php"; // the database configuration file. Update this to connect to your databse //Gets Input from launcher $username = $_POST['username']; //username $password = $_POST['password']; //password $email = $_POST['email']; //email //check if the form was submitted if((isset($_POST['username']) && $_POST['password'] != "")) { //check whether the username and e-mail exist or not $sql="select Name,Email from accounts where Name='".$_POST['username']."'or Email='".$_POST['email']."'"; $results=mysql_query($sql) or die(mysql_error()); if(mysql_num_rows($results)>0) { $row=mysql_fetch_row($results); //check the username if($_POST['username']==$row['0']) { echo 'username='.$_POST['username'].'&password='.$_POST['password']; } //checks the e-mail elseif($_POST['email']==$row['1']) { echo 'username='.$_POST['username'].'&password='.$_POST['password']; } else { //somethings wrong return empty string echo ("username=&password="); } } else //somethings wrong return { //echo ("username=&password="); } } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: include(): open_basedir restriction in effect. File(config.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/5XtK8 on line 2 Warning: include(config.php): Failed to open stream: Operation not permitted in /in/5XtK8 on line 2 Warning: include(): Failed opening 'config.php' for inclusion (include_path='.:') in /in/5XtK8 on line 2 Warning: Undefined array key "username" in /in/5XtK8 on line 5 Warning: Undefined array key "password" in /in/5XtK8 on line 6 Warning: Undefined array key "email" in /in/5XtK8 on line 7

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:
46.4 ms | 402 KiB | 8 Q