i know the problem is something stupid but i cant seem to find it no matter what i do
the page in question is a my action.php file that takes the info submitted by the user and inputs it into the database
vars declared at start of php
//$member_id=$POST["member_id"];
$member_title=$POST['member_title'];
$member_name=$POST['member_name'];
$member_surname=$POST['member_surname'];
$member_email=$POST["member_email"];
//$member_status=$POST["member_status"];
$member_fullname=$POST["member_fullname"];
$member_applyday=$POST["member_applyday"];
$member_applymonth=$POST["member_applymonth"];
$member_applyyear=$POST["member_applyyear"];
and heres the inport code that should be sending the info across to the database.
@mysql_connect($server, $username, $password) or die(mysql_error());
@mysql_select_db($database) or die(mysql_error());
@("INSERT INTO hcicmember.member (member_title, member_name, member_surname, member_email, member_fullname, member_applyday, member_applymonth, member_applyyear)VALUES('$member_title','$member_name','$member_surname','$member_email','$member_fullname','$member_applyday','$member_applymonth','$member_applyyear')") or die(mysql_error());
the thing is....
i know its connecting fine as its creating the rows for each new member, its just not putting anything in them
when i try and echo the variables with:
echo("$member_title','$member_name','$member_surname','$member_email','$member_fullname','$member_applyday','$member_applymonth','$member_applyyear");
i get
','','','','','','','
on the actual page
any assistance would be greatly appreciated as i have been tearing my hair out over this for the last couple of days