I want to put my form inside an if fucntion.
But I use HTML kit to edit my code, and it formats it to show you the different functions etc, and basically putting in
<form action="confirm.php" method="post">
Enter your alias: <input type="text" name="author" />
Enter the title: <input type="title" name="title" />
<label>Type your review:<br />
<textarea name="text" rows="10" cols="40">
</textarea></label>
<input type="submit" value="Go!"/>
</form>
inside a <?php ?> with if tags in, messes the code and causes it to malfunction.
How can I put HTML inside PHP? Is this possible?