Hello,
I am trying to use your pagerank script available here: http://programming-designs.com/page/web … amp;item=2
When I include the pagerank.php file on my index, it shows me the source of the page when i access it and not the page that was supposed to.
My header looks like this:
<?php
error_reporting(0);
include('pagerank.php');
include('data.class.php');
include('config.php');
include('tag_cloud.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
and so on .....And when i comment it, the page works. Can someone please give me an idea of what to do ?
Thank you!
Offline
if the php source is shown to you instead of loading the requested scripts.. that means that php is not installed or not installed properly on the server you are running the script from
Offline