|
URL GET parameters are case sensitive, and since you are passing the parameter ?id=1 (for example), you will need to reflect that in your code. Calling intval($_GET['ID']) will return a zero integer.
$id = intval($_GET['id']);
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|