<!-- phpCookBook Template File http://phpcookbook.sourceforge.net Copyright (c)2002 Floris Barthel <hide@address.com> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the included LICENCE file for more details. --> <html> <head> <title>Add a Recipe</title> <link href="templates/template.css" rel="stylesheet" type="text/css"> </head> <body bgcolor="#FFFFFF"> <h2 align="center">Add a Recipe</h2> <form enctype="multipart/form-data" method="post" action="add.php"> <table align="center" cellspacing="2"> <tr> <th colspan="2">About the Cook</th> </tr><tr> <td>Your name</td> <td><input type="text" name="yourname" size="30" /></td> </tr><tr> <td>Your email</td> <td><input type="text" name="email" size="30" /></td> </tr><tr> <th colspan="2">Recipe Information</th> </tr><tr> <td>Recipe Name</td> <td><input type="text" name="name" size="20" /></td> </tr><tr> <td>Ingredients</td> <td><input type="text" name="ingredients" size="30" value="Seperate multiple ingredients with a semi-colon and a space (; )" /></td> </tr><tr> <td>Supplies</td> <td><input type="text" name="supplies" size="30" value="Seperate multiple supplies with a semi-colon and a space(; )" /></td> </tr><tr> <td colspan="2">Steps</td> </tr><tr> <td colspan="2"><textarea name="steps" rows="15" cols="40"></textarea></td> </tr><tr> <th colspan="2">Recipe Image</th> </tr><tr> <td>Image</td> <td><input type="file" name="image" size="20" /></td> </tr><tr> <td>Alt Text</td> <td><input type="text" name="alt" size="20" /></td> </tr><tr> <td align="right" colspan="2"><input type="submit" value="Add Recipe" name="submit" /></td> </tr> </table> </form> </body> </html>