try it this way:
<a href='/site.php?section=helloworld'>Link[/url] //link to site.php
//in site.php
$section = $_GET['section'];
if($section != ""){
if($section == "helloworld"){
echo "hello";
}
if($section == "goodbye"){
echo "goodbye";
}
}else{
echo "other";
}