Right, everyone has to start somewhere, please don't laugh at me..
My script messing up
<form action="message.php" method="post">
Enter your name: <input type="text" name="name" size="30"><br>
Enter your age: <input type="text" name="age" size="3"><br>
Enter the date you think you will die on: <input type="text" name="death" size="3"><br>
<input type="submit" value="Send"> </form>
<?php
// retrieve form data
$input = $_POST['name'];
$inputi = $_POST['age'];
$inputii = $_POST['death'];
// use it
echo "Great, so your name is <i>$input</i>";. You are <i>$inputi</i>"; years old, and oh dear, you expect to die at the age of <i>$inputii</i>"; that is very bad news!";
?>
What the hell am I doing wrong? This is my first attempt at PHP and if I can't do this right, I don't know what to do, can anyone explain what's wrong?