Hi all,
here my simple code:
I need to check, if ALL of the fields are filled. If yes - then go to www.megawhite.. if NOT - to some other www.
I know, that it is somehow possible with "empty" command.. :rolleyes:
Can You put me on the right way, please?
Thanx.
here my simple code:
Code:
<?php $name = $_REQUEST['name']; $email = $_REQUEST['text']; $comment = $_REQUEST['comment']; mail( "mymail@xyz.xz", "Feedback Form", $name, $comment, "From: $email" ); header( "Location: http://www.megawhite.au" ); ?>
I know, that it is somehow possible with "empty" command.. :rolleyes:
Can You put me on the right way, please?
Thanx.
Comment