3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dbname = ''; $dbuser = 'barry'; $dbpass = 'Barry123$'; $dbhost = 'thrive-lms.cgbwgdsqerhj.ap-southeast-2.rds.amazonaws.com'; $connect = mysql_connect($dbhost, $dbuser, $dbpass) or die("Unable to Connect to '$dbhost'"); mysql_select_db($dbname) or die("Could not open the db '$dbname'"); $test_query = "SHOW TABLES FROM $dbname"; $result = mysql_query($test_query); $tblCnt = 0; while($tbl = mysql_fetch_array($result)) { $tblCnt++; } if (!$tblCnt) { echo "There are no tables<br />n"; } else { echo "There are $tblCnt tables<br />n"; } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function mysql_connect() in /in/0QgMI:7 Stack trace: #0 {main} thrown in /in/0QgMI on line 7
Process exited with code 255.

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