This situation is probably fueled by my intense lack of knowledge of php.
But I have a script being called by:
read.php?blog=mainBlog;id=1
The script contains only the following code.
Code:
<?
$blog = $_GET['blog'];
echo $blog;
?>
Why does it return 'mainBlog;id=1' and not 'mainBlog'?
Thanks.