Please help, i get this error when i run my script on my testing server
Notice: Undefined index: id in index.php on line 5
Notice: Undefined offset: 1 in index.php on line 8
but on my actual website, it displays a blank page, with the background colour, how do i solve these issues
Here is the code
<?php
session_start();
ob_start();
include_once('lib/config.php');
$id = explode('/',$_GET['id']);
$_GET['id'] = $id[0];
$_GET['p'] = $id[1];
if(empty($_GET['id'])) $_GET['id']='twitter';
include_once('lib/facebook/facebook.php');
Please how do i solve this