Guest User

Untitled

a guest
Jan 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. include("db_connect.php");
  3. $output = "";
  4.  
  5. $Name = $_GET["recipename"];
  6. $Ingredients = $_GET["ingredients"];
  7. $Description = $_GET["description"];
  8.  
  9.  
  10. $query = "insert into Recipe (ID, Name, Ingredients, Description) values('', '$Name', '$Ingredients', '$Description')";
  11. $result = mysql_query($query);
  12.  
  13. ?>
Add Comment
Please, Sign In to add comment