Ciao. Sto provando su apache in locale, esempi di form method get.
Allora creo una pagina di prova.htm

<html>
<body>
<form method="get" action="ame.php">
Come ti chiami?
<input name="Author" type="text">


<input type="submit">
</form>
</body>
</html>

e poi la pagina ame.php

<html>
<body>
Come ti chiami?
<?php
echo $Author;
?>
</body>
</html>

Eppure mi da Notice

Notice: Undefined variable: Author in c:\programmi\apache group\apache\htdocs\ame.php on line 5

Come mai che non riconosce la variabile Author? :master: