Guest User

Untitled

a guest
Sep 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2. /*
  3. *MySQL呼び出し
  4. */
  5. include_once "MySQL_Connect.php";
  6. $url = "localhost";
  7. $user = "root";
  8. $pass ="";
  9. $db = "******";//any words
  10. $tblname ="***";//any words
  11.  
  12. $Connect = new MySQL_Connect($url,$user,$pass,$db);
  13. print_r($Connect->MySQL_fetch_all($tblname));
  14. ?>
Add Comment
Please, Sign In to add comment