jhottinger Posted October 2, 2012 Share Posted October 2, 2012 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 More sharing options...
White_Lily Posted October 2, 2012 Share Posted October 2, 2012 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 Link to comment https://forums.phpfreaks.com/topic/268991-make-a-field-required/#findComment-1382192 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.