Jump to content

[PHP-Tutorial] Conectare la mySQL


SkiizO
 Share

Recommended Posts

Grad tutorial: incepator mediu avansat

 

Un tutorial simplu de conectare la mySQL cu ajutorul PHP-ului.

 

<?php
$myUser = "utilizator_sql"; // setam utilizatorul
$myPass = "parola_sql"; // setam parola
$myServer = "server_sql"; // in general este localhost
mysql_connect($myServer, $myUser, $myPass) // se face conectarea la mySQL
or die("Nu s-a putut conecta la server"); // sau nu
?>

 

Sper ca ati inteles.

Edited by SkiizO Capone
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.