Hi,
Make a folder that is public for your images. The below sript calls up the path and inserts it into the img tag in html. ******************************************************
<?php
// open the connection
$conn = mysql_connect("localhost", "", ""

;
// pick the database to use
mysql_select_db("dbase",$conn);
// create the sql statement
$sql = "SELECT picture FROM table";
// execute the sql statement
$result = mysql_query($sql, $conn) or die(mysql_error());
print "<table border=1><tr><th>Picture</th></tr>";
// go through each row in the result set and display data
while ($newArray = mysql_fetch_array($result)) {
// give a name to the fields
$picture = $newArray['picture'];
//echo the results on screen
echo "
<tr>
<td><img src=\"$picture\"></td>
</tr>";
}
print "</table>";
?>
*****************************************************
Create a form that you can type in the image path to be posted to your database
<?php
session_start();
?>
<html>
<head>
<title>
Inserting info to database
</title>
</head>
<body>
<form method="post" action="insert.php">
Path:<input type="text" name="path"><br>
<input type="Submit" name="submit" value="Enter information">
</form>
</body>
</html>
******************************************************
<?php
// open the connection
$conn = mysql_connect("localhost","",""

;
// pick the database to use
mysql_select_db("dbase", $conn);
// create the SQL statement
$sql = "INSERT INTO table values ('$_POST[path]')";
if ($_POST[path] == ""

{die ("<P>Please Enter A Path!<P><FORM><INPUT TYPE=\"BUTTON\" VALUE=\"BACK\" onClick=\"history.back()\"></FORM>"

;}
else
//execute the statement
if (mysql_query($sql, $conn)) {
echo "record added!";
}else{
echo "something went wrong or username already in use";
}
?>
add just place theimage in manually or get a normal html file upload to load it up to your folder.
Reality is built on a foundation of dreams.