The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
transfering variable
I'm using the code following code to allow users to comment a picture:
Code:
function hon_save_vote2(){ $info = auth_member(); $sql_query = "SELECT photos FROM photo_votes WHERE mem_id=".$info["mem_id"]; $exclude = $GLOBALS["DB"]->single($sql_query); $exclude_photos = handle_empties(explode(",",$exclude)); $rating = $GLOBALS["Get"]->type_val("rating","integer"); $pho_id = $GLOBALS["Get"]->type_val("rate_pho_id","integer"); $comment = $GLOBALS["Get"]->val("comment"); if(!in_array($pho_id,$exclude_photos)){ $sql_query = "UPDATE photos SET rating=rating+".$rating.",votes=votes+1 WHERE pho_id=".$pho_id; $GLOBALS["DB"]->execute($sql_query); $sql_query = "UPDATE photo_votes SET photos=CONCAT(photos,'".$pho_id.",') WHERE mem_id=".$info["mem_id"]; $updated = $GLOBALS["DB"]->update($sql_query); if(!$updated){ $sql_query = "INSERT INTO photo_votes (mem_id,photos) VALUES (".$info["mem_id"].",'".$pho_id.",')"; $GLOBALS["DB"]->execute($sql_query); }//if }//if if($comment){ { $sql_query = "INSERT INTO photo_comments (pho_id,mem_id,comment) VALUES (:pho_id:,:mem_id:,':comment:')"; $vals["pho_id"] = $pho_id; $vals["mem_id"] = $info["mem_id"]; $vals["comment"] = $comment; $GLOBALS["DB"]->values = $vals; $GLOBALS["DB"]->execute($sql_query); } }//if load_page("index.php?page=viewphotos&pho_id=".$pho_id."&per_id=".$per_id); }//hon_save_vote2 but it reloads: http://www.schuelercommunity.com/index.php?page=viewphotos&pho_id=100893&per_id= so it doesn't transfer the per_id at the end. how can i fix this? thank you for any help! |
#2
|
|||
|
|||
Should it be
load_page("index.php?page=viewphotos&pho_id=".$pho _id."&per_id=".$per_id."); With the extra " before ); |
#3
|
|||
|
|||
no, there are four quote marks in total. i think that's right.
|
#4
|
||||
|
||||
$per_id is not defined anywhere.
|
#5
|
|||
|
|||
ok, another option would be just refreshing the page (just like the refresh button)
or to retrieve the current URL and to load the current URL. but i dont how to do this. |
#6
|
||||
|
||||
Replace the load_page() line with:
PHP Code:
|
#7
|
|||
|
|||
that gets:
Code:
http://www.schuelercommunity.com/index.php?page=viewphotos&pho_id=100913&per_id=0 |
#8
|
||||
|
||||
Where is per_id located? Is it even passed on to the page?
|
#9
|
|||
|
|||
per_id is in the same table as pho_id.
it is passed to the page i think because it is in the URL of the page where you submit the comment. |
#10
|
||||
|
||||
Give me an example URL.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|