The HTML page
<form action="test2.php" method="post">
Name: <input type="text" name="name"><br>
<input type="submit">
</form>
and the test2.php
<?php
$firstname = $_POST['name'];
print("Name $firstname");
?>
and it shows error
Notice: Undefined index: firstname in test2.php on line 7
This is a problem when i run it on my PHPstorm. PHP i am using is v7.1.3
I don't know whats wrong.
INSERTING PICS
This was using XAMPP and still same results