Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Deleting characters using stored proc

Newbie Spellweaver
Joined
Aug 17, 2007
Messages
58
Reaction score
2
hi all!
simply script to delete any char from data base using a stored procedure :
PHP:
<?
$addr='192.168.72.129';
$user='cabal';
$pass='Your_Pass';
$db=mssql_connect($addr,$user,$pass);
mssql_select_db("Gamedb", $db);

$val=1;//put there a characteridx of char
$sql ="EXEC dbo.cabal_sp_delchar ".$val;
     mssql_query($sql);
?>
 
Back
Top