After you press the button marked "Make the file" you will return to this page, but it will be blank. That is what is supposed to happen. It's so you can add another recipe.

This entry form does allow for <i>, <b>, <p>, <u>, <a>, & <br>.
If you don't know what that means, don't mess with it. :-)


What kind of food is it:

Who/Where does it come from:

Recipe name:

Ingredients:

Directions/notes:

Click here for the main index. \\1://\\2\\3", $text); $ret = eregi_replace("(([a-z0-9_]|\\-|\\.)+@([^[:space:]]*)([[:alnum:]-]))", "\\1", $ret); return($ret); } if ($_REQUEST['recipe']) { $who = strip_tags($_REQUEST['who']); $name = strip_tags($_REQUEST['name']); $ingredients = strip_tags($_REQUEST['ingredients'],",,

,,,
"); $recipe = strip_tags($_REQUEST['recipe'],",,

,,,
"); // if (get_magic_quotes_gpc()) // { $recipe = stripslashes($_REQUEST['recipe']); $ingredients = stripslashes($_REQUEST['ingredients']); $name = stripslashes($_REQUEST['name']); $who = stripslashes($_REQUEST['who']); // } $ingredients = ereg_replace("\r\n", "\n
", $ingredients); $recipe = ereg_replace("\r\n", "\n
", $recipe); $recipe = make_clickable($recipe); $recipe = wordwrap($recipe,60,"\n",1); $date = date("l, F j Y, h:i a"); $datename = date("FjYhia"); $recipe = " $name

$name

From $who

Submitted on $date


Ingredients
$ingredients

Directions
$recipe


Click here to go back to the $category index.
Click here to go back to the main index. "; $fp = fopen ("./".$_REQUEST['category']."/" . basename($datename) . ".recipe.html", "w"); fwrite ($fp, $recipe ); fclose ($fp); $entryindex = "$name

\n"; $fp = fopen ("./".$_REQUEST['category']."/index.html", "a"); fwrite ($fp, $entryindex ); fclose ($fp); } ?>