>Dear all, >Can you aswer for the Query as follow : >if(isset(_POST['VARIABLE1']$$(_POST['VARIABLE2']) >{>print "testing"; >STATEMENTS; >} I'm not sure how this is not throwing a fatal error. Why do you have two $'s in the middle and no $ preceeding variable names? does this work? if(isset($_POST['VARIABLE1']) && isset($_POST['VARIABLE2']) ) { print "testing"; } HTH Jeff --------------------------------- Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php