I am very new to php and want to learn more but I have run into some difficulties...
the form won`t send the variable to the php side... any Ideas?
Here is the code:
HTML:
<html>
<head>
<title>search</title>
</head>
<body>
<h2>Search for a shop</h2>
<br>
<form action="resultsbyname.php" method="post">
Please enter the name, or part of the name, of the shop you are seeking:
<br>
<input name="name" type=text>
<br>
<input type=submit value="search">
</form>
</body>
</html>
PHP:
<?
echo $name;
?>