ive got part of a form
<textarea name="hwkset[0]" cols=35 rows=3></textarea>
im testing out parts as i add them to check they work before i go onto the next.
if($action == "insert" && $password == $pass) {
if ( isset($hwkset[0])) {
?>
There is hwk in the first 1
<?
}
else {
?>
There is no data there
<?
}
exit;
}
ive got that to check there is information in the field before it gets entered into the database, but wether there is something typed in or not the page says
"There is hwk in the first 1"
wot have a missed out or done wrong??