I keep this list updated, if you look for a present for my birthday, christmas, etc here you have a list of things, that definitely would make be happy!
// Place this code into your web page where you would like your list items to be displayed
// Please visit http://www.listideas.com for more infomration
$listUrl = 'http://www.listideas.com/akiwitz/birthday-list/include';
if (intval(get_cfg_var('allow_url_fopen')) && function_exists('readfile')) { @readfile($listUrl); }
elseif (intval(get_cfg_var('allow_url_fopen')) && function_exists('file')) { if($content = @file($listUrl)) echo @join('', $content); }
elseif (function_exists('curl_init')) {
$ch = curl_init ($listUrl);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_exec ($ch);
if(curl_error($ch)) echo "Error processing request";
curl_close ($ch);
} else echo '
It appears that your web host has disabled the ability to open external pages.
Please visit List Ideas for the javascript code or contact your web host for more information.’;
?>