Quote:
Originally Posted by -Elliot-
ProfNerwosol im using xampp now, but now i get a different error
Fatal error: Call to undefined function mssql_connect() in C:\xampp\htdocs\processor.php on line 20
mysql user = root
mysql password = kwda11kwda
phpmyadmin user = pma
mysql password = 4c8ad1b6b336eec
this is my informacion
and this is the line 20
$conn=mssql_connect("$dbhost","$dbuser","$dbpass") ;
Do i have to do this way i mean like this
$conn=mssql_connect("$Ramont","$root","$kwda11kwda
");
|
Simple fix.
Change
$conn=mssql_connect("$dbhost","$dbuser","$dbpass") ;
To
$conn=mssql_connect('$dbhost','$dbuser','$dbpass') ;
or
$conn=mssql_connect('127.0.0.1','$dbuser','$dbpass ') ;
If your Xammp is running on local host with the DB.
Your welcome
Phish
Edit: Let me add.. I hope your webserv is secure as your releasing such sensative data is a major security risk.