Guest User

Untitled

a guest
Mar 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $id=$_GET['invoice'];
  2. include('connect.php');
  3. $result = $db->prepare("SELECT * FROM sales_order WHERE invoice=
  4. :userid");
  5. $result->bindParam(':userid', $id);
  6. $result->execute();
  7.  
  8.  
  9. for($i=0; $row = $result->fetch(); $i++){
  10. ?>
Add Comment
Please, Sign In to add comment