please can some one help me on this code to identify the error and suggest what should be added or removed to make it work without error. this is the error message:
PHP code to retrive data from Mysql database and display the retrive data
6
please can some one help me on this code to identify the error and suggest what should be added or removed to make it work without error.
this is the error message:
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in C:\wamp\www\examSystem\ViewStudentProfile.php on line 15.
this is my code.
<html>
<head> </head>
<body>
<?php
$con=mysqli_connect("localhost","root","","online_ exam");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT FROM student WHERE Student_ID = '$_POST[Student_ID]'");
while($row = mysqli_fetch_array($result, MYSQL_ASSOC))
{
echo $row['Student_ID'] . " " . $row['FName']. " " . $row['LName']. " " . $row['DOB']. " " . $row['Nationality']. $row['NoSemester']. $row['CGPA']. $row['Contact_No']. $row['Address'];
echo "<br>";
}
mysqli_close($con);
?>
</body>
</html>
this is the error message:
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in C:\wamp\www\examSystem\ViewStudentProfile.php on line 15.
this is my code.
<html>
<head> </head>
<body>
<?php
$con=mysqli_connect("localhost","root","","online_ exam");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT FROM student WHERE Student_ID = '$_POST[Student_ID]'");
while($row = mysqli_fetch_array($result, MYSQL_ASSOC))
{
echo $row['Student_ID'] . " " . $row['FName']. " " . $row['LName']. " " . $row['DOB']. " " . $row['Nationality']. $row['NoSemester']. $row['CGPA']. $row['Contact_No']. $row['Address'];
echo "<br>";
}
mysqli_close($con);
?>
</body>
</html>
- Andrew H
- [1] reply
- lloydblinks
- Andrew H
- [ 1 ] Thanks
- [1] reply
- lloydblinks
- pratikboda
- waritt Banned
- pratikboda
Next Topics on Trending Feed
-
6