OK, let's say the URL looks like this:
somesite.com/ajax/getinfo.php?id=news
Then you can take $_GET[id] value and process it with a switch.
If I imagined your code correcly:
$section=$_GET[id];
switch($section) {
case "1":
break;
.
.
.
default:
}
If that is not correct, so pardon my English. Please explain it a bit more, it stills a bit ambiguous.
