Grazie Ale ma non mi funziona.
Attualmente ho il seuente codice:

if ($_SESSION['accsusp']==2) {
headercat($lang[susp_title]);
echo "<p class=contentfont align=center>$lang[susp_text]</p>";
}elseif($_SESSION['store_account_type']==0) {

QUI DOVREI INSERIRE IL REDIRECT

} else {
$getV = checkSetupVoucher(trim($_REQUEST['voucher_code']));

if ($getV['valid']) {
echo "<table cellpadding=4 width=100% class=errormessage><tr><td>$lang[voucher_valid]</td></tr></table>";
} else if (!$getV['valid']&&trim($_REQUEST['voucher_code'])!="") {
echo "<table cellpadding=4 width=100% class=errormessage><tr><td class=redfont>$lang[voucher_invalid]</td></tr></table>";
}
$numeroinsert=getSqlNumber("SELECT id FROM probid_auctions WHERE closed=0 AND deleted!=1 AND ownerid='".$_SESSION['memberid']."'");
$userDetails = getSqlRow("SELECT store_account_type FROM probid_users WHERE id='".$_SESSION['memberid']."'");
if ($userDetails['store_account_type']=='18' && $numeroinsert>='200') {
headercat($lang[susp_title]);
echo "<p class=contentfont align=center>Lo Status base permette fino a 100 inserzioni in corso per aumentare clicca qui!</p>";
}else{
if ($_REQUEST['description_main']!="") $_REQUEST['description'] = $_REQUEST['description_main'];

//if (is_numeric($_REQUEST['resprice'])) {
if ($_REQUEST['resprice'] == 0) $_REQUEST['respr'] = "N";
else if ($_REQUEST['resprice'] < 0) $_REQUEST['respr'] = "N";
else if ($_REQUEST['resprice'] > 0) $_REQUEST['respr'] = "Y";
//} else $_REQUEST['respr'] = "N";

Ho provato con il codice che mi hai inviato ma non funziona