Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. if(isset($_POST['insert']))
  2. {
  3. insert();
  4. }
  5. function insert(){
  6. $requete = "INSERT INTO "event" (
  7. title,
  8. start,
  9. end,
  10. description
  11. )
  12. VALUES
  13. (
  14. "$txttitle",
  15. "$txtstart",
  16. "$txtend",
  17. "$txtdescription"
  18. )";
  19.  
  20. $resultat = $base_hndl->exec($requete);
  21. return $resultat;
  22.  
  23.  
  24. echo "feito";
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement