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 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
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
Output for 8.0.13
Warning: include(config.php): Failed to open stream: No such file or directory 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
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 7.4.33
Warning: include(config.php): failed to open stream: No such file or directory in /in/5XtK8 on line 2 Warning: include(): Failed opening 'config.php' for inclusion (include_path='.:') in /in/5XtK8 on line 2 Notice: Undefined index: username in /in/5XtK8 on line 5 Notice: Undefined index: password in /in/5XtK8 on line 6 Notice: Undefined index: email in /in/5XtK8 on line 7
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.32
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 Notice: Undefined index: username in /in/5XtK8 on line 5 Notice: Undefined index: password in /in/5XtK8 on line 6 Notice: Undefined index: email in /in/5XtK8 on line 7
Output for 7.3.32 - 7.3.33
Warning: include(config.php): failed to open stream: No such file or directory in /in/5XtK8 on line 2 Warning: include(): Failed opening 'config.php' for inclusion (include_path='.:') in /in/5XtK8 on line 2
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Warning: include(config.php): failed to open stream: No such file or directory in /in/5XtK8 on line 2 Warning: include(): Failed opening 'config.php' for inclusion (include_path='.:') in /in/5XtK8 on line 2 Notice: Undefined index: username in /in/5XtK8 on line 5 Notice: Undefined index: password in /in/5XtK8 on line 6 Notice: Undefined index: email in /in/5XtK8 on line 7
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5
Warning: main(config.php): failed to open stream: No such file or directory in /in/5XtK8 on line 2 Warning: main(): Failed opening 'config.php' for inclusion (include_path='.:') in /in/5XtK8 on line 2 Notice: Undefined index: username in /in/5XtK8 on line 5 Notice: Undefined index: password in /in/5XtK8 on line 6 Notice: Undefined index: email in /in/5XtK8 on line 7
Output for 4.3.0 - 4.3.1
Warning: main(config.php) [http://www.php.net/function.main]: failed to create stream: No such file or directory in /in/5XtK8 on line 2 Warning: main() [http://www.php.net/function.main]: Failed opening 'config.php' for inclusion (include_path='.:') in /in/5XtK8 on line 2 Notice: Undefined index: username in /in/5XtK8 on line 5 Notice: Undefined index: password in /in/5XtK8 on line 6 Notice: Undefined index: email in /in/5XtK8 on line 7

preferences:
267.17 ms | 402 KiB | 456 Q