First off all sorry if my inglish spelling is not that great ! Second im also realy sorry if my questions are simply stupid !
Im new to php programing but im realy interested in learning php and mysql, and i realy apreciate all the help from the persons that take some time to help me out, and teach me php.
I have bean reading the php manual on php.net but there are just some things i dont understand, and when i look at the examples i see realy complex examples of people with some experience, so now im trying to learn some basics of php on this forum.
im trying to play around with some simple code
<form method="GET"> name <input type="text" name="name"/></form>
<?php
$value ="$_GET[name]";
echo "$value";
?>
From what i understand is that the var $value will get the informacion writen in to the form, so than i echo the var $ value so it will print on the screen.
But there is somthing im doeing wrong becouse nothng happens
Thank you very mutch.