wenas!! Uso el SQL server 2000 y el abyss web server y
tengo este error--->
Fatal error: Call to undefined function mssql_connect() in C:\Archivos de programa\Abyss Web Server\htdocs\config.php on line 34 (si lo kereis ver---> http://mu-family.servegame.com/)
el config.php es este--->
"<?php
//=========== FragFrog's MU WebCenter ===============
// Welcome to FrogMu's WebCenter, originally based on
// IO*'s files and editted and modified by FragFrog
//=========== FragFrog's Mu WebCenter ================
//============== USER EDITABLE AREA ===================
// Enter the IP or DSN of the database server to connect to
// Change to your server IP (if remote only) works with DNS
$dbhost = "127.0.0.1";
// Enter the username to connect to the db
$dbuser = "sa";<---no es lo mismo ke el admin login?
// Enter the password for the SQL Server
$dbpasswd = ""<---no es lo mismo ke el admin password?
//Admin Login
$alogin = "xxxxx";
//Admin Password
$apass = "xxxxx";
//Database Name
$db = 'web';
//Host. IP If working remotely
$host = '127.0.0.1';
$ip = "127.0.0.1";
$regsubmit = "regform.submit()";
$msconnect=mssql_connect("$host","$alogin","$apass");<---esta es la linea ke da el error xk?
$msdb=mssql_select_db("$db",$msconnect);
?>"