View Single Post
Old 06-12-2002, 03:57 PM   #15 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,489
sde is on a distinguished road
That sounds like there is a problem with your connection script..

try making a seperate page just to test your connection script:

test.php
<?

include("vSignup/auth.php");

$result=mysql_query("insert into racers set name='test',score='0'");

if($result){
echo "connection successful";
} else {
echo "something is wrong with my connection script";
}

?>
sde is offline   Reply With Quote