one input in my form is completed by a variable javascript. I do not understand why my php code does not see this variable? (if I enter the value manually, it will work)
 <?php $kwota2 = $_POST['kwota2']; // undefinded kwota2 ?? ?>
    <form action="post>
    <input id="kwota2" type="text" name="kwota2" disabled>
    <script>
           $("#kwota2").val(localStorage.getItem('sumalist'));
    </script>
<input type="submit" value="Zamawiam">
                    </form>
 
     
    