php mysql fetch and display image

4.7k Views Asked by At

Trying to access a DB and display the contents of imageurl located in movie table dose not seem to work. any suggestions?

<?php
//connect to DB
$db = mysqli_connect("localhost", "awalke32", "21195453", "awalke32");
if (mysqli_connect_errno($db)) {
    print "Connect failed: " . mysqli_connect_error();
    exit();
} else {
    $myint = rand("1", "37"); //random number gererator

    $query = ("SELECT imageurl FROM movie WHERE movie_id=" . $myint); //think the error is in here but it works in Terminal secure shell
    $result = mysql_query($query);

    print "<table width=\"100%\"><tr>";
    print "<td align=\"center\">";
    print "<img src='images/" . $result . "' alt='Image'>"; //this is correct as it works in another page
    print "</td>";
    print "</td></tr></table>";
}
?>
2

There are 2 best solutions below

1
On

Change the line: $myint = rand ("1", "37"); to $myint = rand (1, 37);

0
On

Argument send as int in rand function

and

Fetch data array from result

$myint = rand (1, 37);

$query = ("SELECT imageurl FROM movie WHERE movie_id=".$myint);

$result = mysql_query($query);

if($row = msyql_fetch_array($result)) {
    $image = $row["imageurl"];

    print "<table width=\"100%\"><tr>";
    print "<td align=\"center\">";
    print "<img src='images/".$image."' alt='Image'>";
    //this is correct as it works in another page
    print "</td>";
    print "</td></tr></table>";
}