Advertisement
yeshuadesign

conexao.php

Sep 5th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. $host = 'localhost';
  3. $user = 'root';
  4. $pass = '';
  5. $db = 'imobi';
  6. $conexao = mysql_connect($host, $user, $pass) or die(mysql_error());
  7. mysql_select_db($db, $conexao);
  8. mysql_set_charset('utf-8');
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement