Jump to content

PHPBB Limit User Name Characters


GoodGuy201

Recommended Posts

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]

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.