Hi all,
Take one form:
Add in a php script:
Result:
Blank screen.
Any ideals? Ta!
Take one form:
Code:
<form method="post" action="process.php" /> <input type="text" name="foreame" /> <input type="text" name="surname" /> <input type="submit" value="Submit" /> </form>
Code:
<?php $firstame = $_POST['foreame']; $lastname = $_POST['surname']; echo "Hello ". $firstame . " " . $lastname; echo "Thank you for ordering from us"; echo var_dump($_POST); ?>
Blank screen.
Any ideals? Ta!
Comment