daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 47 in 21 hours
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $link = mysqli_connect("localhost", "my_user", "my_password", "world");
  3. /* Select queries return a resultset */
  4. if ($result = mysqli_query($link, "SELECT Name FROM City LIMIT 10")) {
  5.     printf("Select returned %d rows.\n", mysqli_num_rows($result));
  6.  
  7.     /* free result set */
  8.     mysqli_free_result($result);
  9. }
  10. ?>
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top