<?php
$posapp=$_POST['txtapplied'];
$fname=$_POST['txtfname'];
$mname=$_POST['txtmname'];
$lname=$_POST['txtlname'];
$month=$_POST['txtmonth'];
$day=$_POST['txtday'];
$year=$_POST['txtyear'];
$age=$_POST['txtage'];
$eadd=$_POST['txtemail'];
$homenumber=$_POST['txthnum'];
$cpnumber=$_POST['txtcpnumber'];
$address=$_POST['txtaddress'];
$religion=$_POST['txtreligion'];
$birthplace=$_POST['txtbplace'];
$height=$_POST['txtheight'];
$weight=$_POST['txtweight'];
$civilstatus=$_POST['txtcstatus'];
$college=$_POST['txtcollege'];
$course=$_POST['txtcourse'];
$year=$_POST['txtyeargrad'];
$db=mysql_connect('localhost','root','') or die ('Cannot connect to MYSQL!');
@mysql_select_db('dbriomra') or die('Cannot connect to database');
$query=mysql_query("Insert into onlineapplication values ('posapp', 'fname', 'mname', 'lname', 'month', 'day',
'year', 'age', 'eadd', 'homenumber', 'cpnumber', 'address', 'religion', 'birthplace', 'height', 'weight', 'civilstatus', 'college','course', 'year')");
if($posapp!=NULL || $fname!=NULL || $mname!=NULL || $lname!=NULL || $month!=NULL || $day!=NULL || $year!=NULL || $age!=NULL || $eadd!=NULL || $homenumber!=NULL || $cpnumber!=NULL || $address!=NULL || $religion!=NULL || $birthplace!=NULL || $height!=NULL || $weight!=NULL || $civilstatus!=NULL || $college!=NULL || $course!=NULL || $year!=NULL)
if(mysql_query($query))
{
echo "<br>" .mysql_affected_rows($db). "record added";
}
else
{
echo "<br> Problem Loading";
}
mysql_close($db);
?>
the declarations of my textboxes, are not detected, i don't know why, PLEASE HELP. thank you!