Advertisement
DesenvolverBatch

conexao.php

Oct 28th, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. $conexao = mysql_connect('localhost','root','');
  4.  
  5. if($conexao == false) {
  6.  
  7.     die ("Não foi possível conectar ao mysql");
  8.  
  9. } else {
  10.  
  11.     $selectBD = mysql_select_db("agenda",$conexao);
  12.    
  13.     if ($selectBD == false) {
  14.    
  15.     die ("Erro:não conseguiu selecionar a base de dados!");
  16. }
  17.  
  18. }
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement