Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code for my forms to let the users know that the min characters should be 5 or more if not they get a error "Name must be more than 5 characters". I have it in javascript but I want to coded it in php too. How can I do that.

<script type="text/javascript">
    // <![CDATA[
    function testing(val,x){
      maxlen = x;
      if(val.length > maxlen) {
        alert('Limit of characters is '+ maxlen);
        document.chars.tests.value = val.substring(0,maxlen);
      }
    }
     function Minimum(obj,min){
     if (obj.value.length<min) alert('min of '+min);
    }
    // ]]>
    </script>

<form method="post" action="" name="form_2">
      <p>
        <input type="text" name="box1" size="30" onblur="testing(this.value,25);Minimum(this,4);" onkeypress="testing(this.value,25)" />
        <input type="submit" value="Submit" name="Button" />
      </p>
    </form>
share|improve this question
3  
StackOverflow is not the proper place for this question. We do not write your code for you. You need to do your own coding and if you aren't sure why something is not working as expected, post the code with an explanation of what you were expecting it to do, and what it is actually doing including all error messages. See ask advice. – John Conde Jan 25 at 4:09
StackOverFlow is a place for help right and I'm here for help so wheres my help at and also I asked "How can I do that." that doesn't mean what you posted about me asking for you or someone to write a code for me. Its just a question asking for help. – Agustin Leyva Jan 25 at 4:13
Maybe you can post a non-working php code so that we can see that's wrong with it. You should at least try. – Antony Jan 25 at 4:16
Trying to google something like this in php but can't think how to word it so I can find example. – Agustin Leyva Jan 25 at 4:20

closed as not a real question by John Conde, Sindre Sorhus, The Shift Exchange, Björn Kaiser, Aleksander Blomskøld Jan 25 at 11:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Have a look at strlen or mb_strlen

if(strlen($_POST['box1'])<=5) echo 'error';

share|improve this answer

You need to do something like this....

if(isset($_POST['Submit']))
{
    if(strlen($_POST['box1'])<=5) 
    { 
       echo "Name must be more than 5 characters";
     }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.