Hello! Below is the query to the database . What's the problem? Issues
mysqli_result Object ( [current_field] => 0 [field_count] => 7 [lengths] => [num_rows] => 0 [type] => 0 )
require_once 'connection.php'; $link = mysqli_connect($host, $user, $password, $database) or die('could Not connect to database' . mysqli_error($link)); $load = $_POST['load']; $query = "SELECT * FROM completed_data where `c_name`='$load'"; $res = mysqli_query($link, $query) or die("Error" . mysqli_error($link)); print_r($res); echo '
'; mysqli_close($link);
Thanks for the help