jeg er sikker på at du har forklaret det ligeså godt som de tutorials som Jeppe kom med
men på den ene tutorial er der en ting jeg stadig ikke forstår...
To get a variable which has been sent to a script using the POST method you use the following code:
$variablename=$_POST['variable'];
which basically takes the variable from the POST (the name of a form field) and assigns it to the variable $variablename.
Similarly, if you are using the GET method you should use the form:
$variablename=$_GET['variable'];
This should be done for each variable you wish to use from your form (or URL).
Indlæg senest redigeret d. 02.08.2007 00:04 af Bruger #12242