Hi SanJ,
The best way at this time is with an intermediary script, ie:
<?php// example signup2.php// place in ListMail folder and point all signup forms to itinclude('./config.php');include('./admin.php');// dont allow if on this list$back_list = 1;list($test)=@mysql_fetch_row(mysql_query("select id from lm_users where list = '$back_list' and email like '".addslashes($email)."';"));if($test){ echo "Sorry you may not subscribe...<br>"; exit;}// build vars $vars=array(); foreach($_POST as $k=>$v){ $vars[]=$k.'='.urlencode($v); } // forward to signup.phplist($lmp)=@mysql_fetch_row(mysql_query("select listmailpath from lm_config"));header('Location: '.$lmp.'signup.php?'.implode('&',$vars));?>
Please let me know if you need more help
Regards