PHP Select SQL view no output
问题 I creating a php file that pulls a view from an SQL database. Can someone let me know why this isn't working? It seems to be timing out. I am not getting a connection error, either. Thank you in advance. <?php require ('mysqli_connect.php'); $sql = "SELECT * FROM testview ;"; $result = mysqli_query($dbc,$sql); // Check connection if ($dbc->connect_error) { die("Connection failed: " . $dbc->connect_error); } $result=mysqli_query($sql); if ($result->num_rows > 0) { echo "<table><tr><th>userID<