Advertisement
ayqo

Untitled

Jun 15th, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * @author Aykut Alp
  5.  * @copyright 2012
  6.  */
  7.  
  8. include_once "ez_sql_core.php";
  9. include_once "ez_sql_mysql.php";
  10.  
  11. $vt_kullanici="root";
  12. $vt_parola="";
  13. $vt_isim="cicek";
  14. $vt_sunucu="localhost";
  15.  
  16. $db = new ezSQL_mysql($vt_kullanici,$vt_parola,$vt_isim,$vt_sunucu);
  17.  
  18. $sonuclar = $db->get_results("SELECT * FROM ayar");
  19. $i=1;
  20. foreach ( $sonuclar as $sonuc )
  21. {
  22.    $title = $sonuc->title;
  23.    $tag = $sonuc->tag;
  24.    $desc = $sonuc->desc;
  25. }
  26.  
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement