Guest User

Untitled

a guest
Apr 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. require_once '../db/db_Oo.php';
  2.  
  3. $db = new DB();
  4.  
  5. $result = $db->select('*', 'product_type');
  6.  
  7. while ($row = mysql_fetch_array ($result)) {
  8. echo 'id:'.$row ['type_id'].' : '.$row ['type_value'].'<br />';
  9. }
Add Comment
Please, Sign In to add comment