GoodGuy201 Posted September 8, 2006 Share Posted September 8, 2006 Hi, I am trying to limit the characters that can be used for PHPBB to just letters,numbers,underscore,and dash. I don't know how i can do this. I hope someone can help. Thanks! Link to comment https://forums.phpfreaks.com/topic/20101-phpbb-limit-user-name-characters/ Share on other sites More sharing options...
Jenk Posted September 8, 2006 Share Posted September 8, 2006 ask on phpbb forums, plenty of hacks and other modders there. Link to comment https://forums.phpfreaks.com/topic/20101-phpbb-limit-user-name-characters/#findComment-88237 Share on other sites More sharing options...
redarrow Posted September 8, 2006 Share Posted September 8, 2006 A little example for you to see how it works.but i agree you should use the forum from the provided code as jenk said.letters,numbers,underscore,and dash are all clased as a charecter.[code]<?php$name="redarrows";$lenth=strlen($name);if($lenth > 8){echo "sorry the name is to long your using $lenth charecters but there should only be 8";}else {echo "name lenth ok your useing $lenth charecters";}?>[/code] Link to comment https://forums.phpfreaks.com/topic/20101-phpbb-limit-user-name-characters/#findComment-88241 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.