gesf
New member
Retrieving data sent through a form:
Use $_GET[], if the form's method is set to "get" and $_POST[] if the form's method is set to "post".
Use just $_GET[] for data sent through URL. You can also use $_REQUEST[].
So, for your example:
Use $_GET[], if the form's method is set to "get" and $_POST[] if the form's method is set to "post".
Use just $_GET[] for data sent through URL. You can also use $_REQUEST[].
So, for your example:
Code:
<?php
if(isset($_GET['paragraaf'])) {
$paragraaf = $_GET['paragraaf'];
}
...
?>