But i got this problem with getting the pictures out im uploading to the mysql db.
I wanna know how i can get the pictures out and showing them, here my code:
<?php
$connect = mysql_connect("","","");
$select_db = mysql_select_db("",$connect);
$selectpic = mysql_query("SELECT picture, title, discription FROM upload");
while($rowpic = mysql_fetch_row($selectpic)) {
echo $rowpic[0];
echo "<br />";
echo $rowpic[1];
echo "<br />";
echo $rowpic[2];
}
?>
( yes i know i spelled description wrong, just too lazy to fix it :D )
thanks from flezria


Sign In
Create Account


Back to top









