|
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";
}
?>
|