3v4l.org

run code in 300+ PHP versions simultaneously
<?php if(isset($_POST['submit'])) { //Connect to Database $db = new PDO('mysql:host=localhost;dbname=dbname;charset=utf8', 'dbuser', 'dbpassword'); //Upload File if (is_uploaded_file($_FILES['filename']['tmp_name'])) { echo "<h2>" . "File ". $_FILES['filename']['name'] ." uploaded successfully." . "</h2>"; } //Import uploaded file to Database $handle = fopen($_FILES['filename']['tmp_name'], "r"); $count =0; while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { $import = $db->exec("INSERT into seoreports (account_name,ranking,alerts,opportunities,pdf_report) values('$data[0]','$data[1]','$data[2]','$data[3]','$data[4]')"); $count++; } fclose($handle); //Print interted rows $msg="<h3 style='color:green;'>".$count. "&nbsp;&nbsp;Rows Imported !</h3>"; } ?> - See more at: http://freewebmentor.com/2014/01/import-csv-file-data-in-mysql.html#sthash.F1Ja1JeG.dpuf
Output for git.master, git.master_jit, rfc.property-hooks
- See more at: http://freewebmentor.com/2014/01/import-csv-file-data-in-mysql.html#sthash.F1Ja1JeG.dpuf

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