frank_solo Posted March 19, 2012 Share Posted March 19, 2012 I would like to know how I can use the code below to indicate only a range of 5 to 10 characters. else if(strlen($_POST["username"]) 5,10){ echo "<p> </p><p> </p><p> </p><br />Please go back, USERNAME is too short! MUST BE BETWEEN 5 to 10 characters.<p> </p><p> </p><a href='javascript:javascript:history.go(-1)'>Click here to go back to previous page</a>"; Thanks Quote Link to comment Share on other sites More sharing options...
l0gic Posted March 19, 2012 Share Posted March 19, 2012 ... else if(strlen($_POST["username"]) >= 5 && strlen($_POST["username"]) <= 10){ ... ..? Quote Link to comment Share on other sites More sharing options...
frank_solo Posted March 19, 2012 Author Share Posted March 19, 2012 Perfect thanks it was missing a ")" but it worked Thanks else if(strlen($_POST["username"]) >= 5 && ($_POST["username"]) <= 10) Quote Link to comment Share on other sites More sharing options...
requinix Posted March 19, 2012 Share Posted March 19, 2012 Your code is not the same as l0gic's. Yours may look like it works but it does not. Quote Link to comment Share on other sites More sharing options...
scootstah Posted March 19, 2012 Share Posted March 19, 2012 Your code is not the same as l0gic's. Yours may look like it works but it does not. Wow, I think it's time to go to bed. It took me way too long to figure out what was different, haha. For the record: you omitted the second strlen. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.