The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#7
|
|||
|
|||
![]()
Just so everybody knows I finally got this to work. The $_get works just as fine as the variable above, but i used the above statement anyways. However, that didn't write it to the database.
So, what I did to make it work was pass the output of the input cleaner through the template (but hidden so the user can't touch or change): The input cleaners: Code:
$vbulletin->input->clean_array_gpc('g', array('contest' => TYPE_STR)); $contestname = $vbulletin->GPC['contest']; $vbulletin->input->clean_array_gpc('g', array('week' => TYPE_STR)); $week = $vbulletin->GPC['week']; Code:
<input type="hidden" value="$contestname" name="contestname" /> <input type="hidden" value="$week" name="getweek" /> Code:
$vbulletin->input->clean_array_gpc('p', array( 'contestname' => STR, 'getweek' => STR, (more array cleaning here...) )); $contestname1 = $vbulletin->GPC['contestname']; $currentweek = $vbulletin->GPC['getweek']; Code:
$db->query_write ("INSERT INTO " . TABLE_PREFIX . "xxx (............) VALUES ('$contestname1', '$currentweek') Even though the posts above didn't directly help, they got me thinking -- so thanks to all who posted. Hope the above makes sense and helps somebody. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|