Subscribe
Duration : 1 Year
Author : mysql Tutor
Price : $1
Tecwallet Funds available: $0
LogIn Forgot password? Create account
OR
This video will teach you how to fetch data from mysql db using PHP.
Enjoy !!
$query = "SELECT * FROM sample" or die("Error in the consult.." . mysqli_error($link));
$result = mysqli_query($link, $query);
while($row = mysqli_fetch_array($result)) {
echo $row["name"] . " lives at " . $row["address"] . " " . $row["city"] . " " . $row["country"] . "<br/>";
}
Comments ( To Post Your Comment Please Login First! )