can u tell me how to put this in the photo gallery when a member upload there photo i want them to can edit there caption and the ratings show under the pic as well as the caption
Gallery Caption and Ratings
Collapse
X
-
here is the code to put in the fun_gallery
PHP Code:`title` varchar(30) NOT NULL,
PHP Code:$cap = mysql_fetch_array(mysql_query("SELECT title FROM fun_gallery WHERE id='".$id."'"));
echo "Photo Caption: <u><b>$cap[0]</b></u><br/>";
PHP Code:$res = mysql_query("INSERT INTO fun_gallery SET uid='".$uid."', title='".mysql_escape_string($viname)."', itemurl='".$itemurl."', sex='".$usex."'");
Comment