How do I dynamically generate URLs?

$_GET['id'];

Also you can set a variable to it as well.

$id = $_GET['id'];

print($id);

Leave a Comment