bouchnina

Untitled

Mar 27th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $db = new pdo("mysql:host=localhost;dbname=arabic-manga","root","");
  2. $sql = 'SELECT * FROM lastchapitre ';
  3.  
  4. $html = '<ul>' ;
  5. foreach($db->query($sql) as $row){
  6. $html .= '<li>'.$row['id'].'</li>'
  7. }
  8. $html .= '</ul>';
  9. echo $html;
Advertisement
Add Comment
Please, Sign In to add comment