Skip to content

Instantly share code, notes, and snippets.

@amannayak0007
Created January 23, 2015 07:00
Show Gist options
  • Save amannayak0007/96f45e1c5be6d61eebfb to your computer and use it in GitHub Desktop.
Save amannayak0007/96f45e1c5be6d61eebfb to your computer and use it in GitHub Desktop.
PHP
<?php
// Create connection
$con=mysqli_connect("localhost","username","password","dbname");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
// This SQL statement selects ALL from the table 'Locations'
$sql = "SELECT * FROM Locations";
// Check if there are results
if ($result = mysqli_query($con, $sql))
{
// If so, then create a results array and a temporary one
// to hold the data
$resultArray = array();
$tempArray = array();
// Loop through each row in the result set
while($row = $result->fetch_object())
{
// Add each row into our results array
$tempArray = $row;
array_push($resultArray, $tempArray);
}
// Finally, encode the array to JSON and output the results
echo json_encode($resultArray);
}
// Close connections
mysqli_close($con);
?>
@nulpatrol
Copy link

Use PDO instead of mysqli_ext

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment