I am just trying to get a text from text box and print it through POST method but i get the error Undefined index : name in 14th line
<html>
    <head>
        <title>Form with PHP </title>
    </head>
    <body>
        <form method = "post">
            <input type ="text" name="name">
            <input type="button" value="submit" id="submit">
        </form>
<?php
    $name=$_POST["name"];
    echo "my name is" .$name;
?>
</body>
</html>
 
     
     
     
    