|
actually i want to display image upload from user correctly..i fail to match the image upload form user...the image display in all user profile...
Example : The image upload from user A....display in all table profile user...(i actually want the image display right on each user likes image upload from user A will show on user A profile.
<Added>
This is the coding display image after already upload the image
<? $queryImage= mysql_query("SELECT * FROM image WHERE user='". $_SESSION["userID"]."'");
$recordImage = mysql_fetch_array($queryImage);
if($recordImage){
print('<img src="upload/'.$recordImage['filename'].'" border="0" width="100">');
}
?>
|
|
|
|
|
|
|
|