art15 Posted May 19, 2008 Share Posted May 19, 2008 Hi All, Can anyone suggest the function or script which can restrict the text box to only accept one word and ignore any more words entered. Thanks Link to comment https://forums.phpfreaks.com/topic/106268-limit-the-text-field-to-one-word-lenght-only/ Share on other sites More sharing options...
thebadbad Posted May 19, 2008 Share Posted May 19, 2008 In PHP you could explode() the string by spaces: <?php $str = $_POST['fieldname']; list($word) = explode(' ', $str); echo $word; // will output the first word of the string ?> Link to comment https://forums.phpfreaks.com/topic/106268-limit-the-text-field-to-one-word-lenght-only/#findComment-544664 Share on other sites More sharing options...
art15 Posted May 20, 2008 Author Share Posted May 20, 2008 That's great it worked for me. Thanks Link to comment https://forums.phpfreaks.com/topic/106268-limit-the-text-field-to-one-word-lenght-only/#findComment-545326 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.