thanks jumpd, works nicely in that instance, however for another situation, I am having problems using the cleaner class within a foreach loop...
My current code:
PHP Code:
if ($_POST['do'] == 'updatedisplayorder')
{
foreach ($_POST['order'] as $artistmbrid => $xdisplayorder)
{
$db->query_write("UPDATE " . TABLE_PREFIX . "erc_artistmbr SET `displayorder` = '".$xdisplayorder."' WHERE artistmbrid = '".$artistmbrid."'");
}
}
What i tried that didn't work:
PHP Code:
if ($_POST['do'] == 'updatedisplayorder')
{
$vbulletin->input->clean_array_gpc('p', array(
'order' => TYPE_INT
));
foreach ($vbulletin->GPC['order'] as $artistmbrid => $xdisplayorder)
{
$db->query_write("UPDATE " . TABLE_PREFIX . "erc_artistmbr SET `displayorder` = '".$xdisplayorder."' WHERE artistmbrid = '".$artistmbrid."'");
}
}
When i run the second above, it fails to update the display order. It does nothing. I know this class will start to make sense to me once i see a few examples with & without it's use, just taking me a little time to get used to using the cleaner class.