Hey
i have a form and when they input their usename.
How can i stop them from putting spaces in their name (not really stop them just echo name cannot contain spaces) ?
Thanks
| SitePoint Sponsor |
Hey
i have a form and when they input their usename.
How can i stop them from putting spaces in their name (not really stop them just echo name cannot contain spaces) ?
Thanks
-Ice
Hi,
one way could be:
PHP Code:<?php
$my_string = "this is my nick name";
if ( preg_match( "/\\s/", $my_string ) )
{
print "Sorry, but the name cannot contain spaces!!!";
}
?>
Thanks
Works Great![]()
-Ice
Bookmarks