Quote:
Originally Posted by DjTaz
In the form i have sending back to that page again i have
<input type=\"hidden\" name=\"updated\" value=\"1\">
and when submitting that form , the $updated value should be set to 1.
|
$updated will not be set to anything unless you have code in the file to set it. Like I said, the data will not get passed back directly to a variable. You can access it via $_REQUEST['updated'], but you should really pass the data via vb's GPC cleaning routines.
See
http://www.vbulletin.com/docs/html/m...estandards_gpc for details of them.