Advertisement
tarbence1

Untitled

Feb 22nd, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $stmt = $conn->prepare("SELECT id, name, phone, phone2, email, zipcode, address, job, description, visibility, confirmed, userid FROM cards WHERE userid= ?");
  2. $stmt->bind_param("i",$userid);
  3. $userid = (int) $_SESSION['id'];
  4. $stmt->execute();
  5. $result = $stmt->get_result();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement