3v4l.org

run code in 300+ PHP versions simultaneously
<!DOCTYPE html> <html> <body> <?php $servername = "217.61.4.77"; $username = "i_yurchenko"; $password = "iu123"; $dbname = "Utah"; // Create connection $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $sql = "SELECT id, name, login FROM Users"; $result = $conn->query($sql); if ($result->num_rows > 0) { // output data of each row while($row = $result->fetch_assoc()) { echo "<br> id: ". $row["id"]. " - Name: ". $row["name"]. " " . $row["login"] . "<br>"; } } else { echo "0 results"; } $conn->close(); ?> </body> </html>
Output for git.master, git.master_jit, rfc.property-hooks
<!DOCTYPE html> <html> <body> Fatal error: Uncaught Error: Class "mysqli" not found in /in/HsPVg:12 Stack trace: #0 {main} thrown in /in/HsPVg on line 12
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:
52.93 ms | 401 KiB | 8 Q