RubyM2 Updated exes 25/7/2010

smoochy boys on tour

mStation

Golden Oldie
Golden Oldie
Oct 29, 2003
2,042
69
255
♫♪♫ ♦♥♠♣ ♀♂♀
JealY, your guide isn't bad.. since you started it then you can complete it..

i am basing the work using this tutorial to connect to the ms sql Here

you have to connect to the computer which has the ms sql installed using the standard connections to database the php offers like:

<?php
$mssqlHost = "hostname\\SQLEXPRESS";
$mssqlUser = 'sa';
$mssqlPass = 'password';
$mssqlDB = 'LOM2Account';
$s = mssql_connect($mssqlHost,$mssqlUser,$mssqlPass) or die('Could not connect to SQL Server on '.$mssqlHost.' '. mssql_get_last_message());
echo $s;
?>

the table name is TBL_ACCOUNT while the LOM2Account is the database holding the desired table..

also the fields which need to be added are:
FLD_LOGINID which is 25 chars long
FLD_PASSWORD which is 21 chars long
and all the other fields can be left to thier default values..

this should do it i guess... didn't set it up yet but if you are setting it up i hope it helps you