Jump to content

Make A Field Required


jhottinger

Recommended Posts

Hi all,

 

please can someone advise how i can make the below code appear as a required field

 

 global $CONFIG;
 echo "<tr><th>";
 echo "{$GLOBALS['strTms_Add_TimeUsed']}";
 echo "</th><td>";
 echo "<input type='text' size='12' name='tms_add_timeused'></td></tr>";
 return;
}
?>

 

thanks

James

Link to comment
https://forums.phpfreaks.com/topic/268991-make-a-field-required/
Share on other sites

there are many ways. the most common is just put a red " * " next the field name, and use simple php validation to check whether the entry is already in use in the database or whether the user has actually entered anything into the field when submit is triggered, and you can also use it check whther the charaters the user input are characters that are accepted

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.