Welcome Guest, Not a member yet? Register   Sign In
Validate file if a select is...
#1

(This post was last modified: 03-16-2021, 01:08 PM by pippuccio76.)

i , sorry for english , i want validate a form with a  select and file , only if select  value is 6 the file must be uploaded .

How can i create this rule  ?

this is my code:

Code:
 <select id='id_id_stato_pratica'  class="form-control border border-warning mxn-shadow-input mb-4" name='id_stato_pratiche' >
                                  
                                  
       <option value='4'> FIRMATA </option>

       <option value='5'> IN LAVORAZIONE </option>
                                
       <option value='6'>  COMPLETATA </option>

</select>

<input type="file" name="pratica" id='file_pratica'>

   


This is my validation but don't work :

Code:
    public function validate_pratica_completata(string $str,string $fields, array $data)
    {

        if($data['id_stato_pratiche'] == 5){

            return true;

        }elseif ($data['id_stato_pratiche'] == 6 AND isset($data['pratica'])) {

            return true;

        }else{

            return false;
        }
         
    }
Reply


Messages In This Thread
Validate file if a select is... - by pippuccio76 - 03-16-2021, 01:06 PM
RE: Validate file if a select is... - by iRedds - 03-17-2021, 02:16 AM
RE: Validate file if a select is... - by kenjis - 03-17-2021, 05:21 PM



Theme © iAndrew 2016 - Forum software by © MyBB