I'm stuck on a php issue where I'm trying to access a url I stored in a local database (stored on a MAMP server) and display it. The URL is a video file on a server and the idea is that the video is retrieved from the url on the database and shown on a browser (preferably on auto-play). For some reason, the php script won't show the table contents at all. I'm kind of new to sql. Any help would be appreciated. Thanks This is the db table: media
This is my code:
<?php
$servername = "localhost";
$username = "media";
$password = "mysqluser";
$dbname = "media";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// sql to display a record
$sql = "SELECT * FROM media";
if ($conn->query($sql) === TRUE) {
echo "Record dislayed successfully";
} else {
echo "Error showing record" . $conn->error;
}
$conn->close();
?>