Hi Rick.. Thanks a lot, I figured it.. but now I have another problem.. How do I take an input and insert it into the database..
right now I am using this
$sql = "INSERT INTO tblmember (Fname,Lname,MemberNo,status)".
"VALUES '$Fname,$Lname,$MemberNo,$status')";
$result = mysql_query ($sql)
or die ("Query failed");
but this is failing and it has a good reason to failing, coz I have all those $ variables which mysql can't interpret.. how does one insert data and getting an input..
Thanks