Mendapatkan nilai dari URL PHP
$id = $_GET['id'];
// OR
$id = $_REQUEST['id'];
Samson Munyira
$id = $_GET['id'];
// OR
$id = $_REQUEST['id'];
// previous link
<a href="test_get.php?subject=PHP&web=W3schools.com">Test $GET</a>
// the code
<?php
echo "Study " . $_GET['subject'] . " at " . $_GET['web'];
?>