replace current code:
to:PHP Code:$cid = (int)($_GET['cid']);
$pid = (int)($_GET['pid']);
PHP Code:$cid = isset($_GET['cid']) ? (int)($_GET['cid']) : 0;
$pid = isset($_GET['pid']) ? (int)($_GET['pid']) : 0;
| SitePoint Sponsor |
replace current code:
to:PHP Code:$cid = (int)($_GET['cid']);
$pid = (int)($_GET['pid']);
PHP Code:$cid = isset($_GET['cid']) ? (int)($_GET['cid']) : 0;
$pid = isset($_GET['pid']) ? (int)($_GET['pid']) : 0;
Bookmarks