Hey all,
Trying to verify a condition based on a form post.
No easyway to tell if field has been posted.
Can't echo or echo alert as the php in question is layers below display.
Is it possible to open a new window in php something like the following?
$email_ba = $_POST['email_ba'];
if($email_ba='1'){
window.open('about:blank', 'about_blank', 'height=400,width=600');
}
which of course DOESN'T WORK but... you get the idea.