daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 50 in 21 hours
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. <?php
  3. $link = mysqli_connect("localhost", "my_user", "my_password", "world");
  4.  
  5. /// create cart
  6. $query = "INSERT INTO myCity VALUES (NULL, 'Stuttgart', 'DEU', 'Stuttgart', 617000)";
  7. /// run the query
  8. mysqli_query($link, $query);
  9. $cart_id = 0
  10. if ($cart_id = mysqli_insert_id($link)){// if success
  11.     printf ("New Record has id %d.\n", $cart_id);
  12. }else{
  13. // handle errors
  14. }
  15.  
  16. /// Modify this to create a user account
  17. if ($result = mysqli_query($link, "insert..... ..... .... " . $cart_id)) {
  18.     printf("Select returned %d rows.\n", mysqli_num_rows($result));
  19.  
  20.     /* free result set */
  21.     mysqli_free_result($result);
  22. }else{// if failed...
  23. //
  24. }
  25. ?>
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top