I want to check the condition based on input item. This item is in model window . i wrote the condition in model window.
<?php 
if( ($_POST['title'] == 3) )
{ 
   ?>
      <input type="file" name="file" accept="image/gif,image/jpeg,image/png,image/jpg" />
   <?php 
} else {
   ?>
         <input type="file" name="file" accept="application/pdf" /> 
   <?php 
} 
?>
It shows the error below:
Message: Undefined index: title
 
     
    