Guest User

Untitled

a guest
Jan 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. $output = "";
  4.  
  5.  
  6. $output .="<form method=\"get\" action=\"add_new_recipe.php\">\n";
  7.  
  8. $output .="Name <input type=\"text\" name=\"recipename\">\n";
  9. $output .="Ingredients <input type=\"text\" name=\"ingredients\">\n";
  10. $output .="Description <textarea name=\"description\"></textarea>\n";
  11.  
  12.  
  13. $output .="<input type=\"submit\" value=\"submit recipe\">\n";
  14. $output .="</form>\n";
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment