Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

It is necessary to check if the user wrote 2 or more words

It is necessary to check if the user wrote 2 or more words, if less, then an error should be generated. This must be done using the "explode" method.

my code

<input type="text" name="films" class="form-control mb-3">

<?php   
$films = $_POST['films'];

if(explode(',', $films) < 2) {
    echo 'error';
} else {
    echo $films;
}

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Use the count method to count the explode result:

if (count(explode(',', $films)) < 2)
...
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading