Advertisement
Guest User

Untitled

a guest
May 14th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.     $server = "localhost";
  3.     $username = "root";
  4.     $password = "root";
  5.     $database_name = "phpproject1";
  6.     $conexao = mysql_connect($server, $username, $password);
  7.     mysql_select_db($database_name, $conexao);
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement