show/hide this revision's text 2 added 27 characters in body

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.

show/hide this revision's text 1

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.