my html form not sending food val to php to print it on browser so i want enter some data into html page and i want the php code print it the value in php code is food !
 <?php
    if( isset($_GET['submit']) )
    {   
        echo $food;
    }
    ?>
    <html>
    <form action="" method="get">
    <br>
    <input type="text" name="food" value="enter food">
    <br>
     <input type="submit" name="submit" value="send"></input>
    <input type=reset value="reset">
    </form>
    </html>
 
     
     
    