
 Adsense v0.1 plug-in for eggblog v3 - (c) www.eggblog.net 2006
 Downloaded from http://www.eggblog.net/plugins/


 Installation
 ------------


"; require "../plugins/adsense/index.php"; echo "


 1. Register yourself with google adsense and complete the forms
    to generate your unique Adsense Script. There is a link
    available at:
       www.eggblog.net/plugins/?id=2

 2. Un-zip the files to:
      /plugins/adsense/_README.txt
      /plugins/adsense/index.php

 3. Paste your unique Adsense Script into config.php file and upload.

 4. To add the google adsense banner to the single blog article page,
    ammend /home/blog.php to include the plug-in:

      // plugin-adsense-v0.1
      require_once "../plugins/adsense/index.php";

    ... under the lines (approximately line 42) ...

	<ul class=\"articledetails\">
		<li class=\"author\">$row_blog[author]</li>
		<li class=\"date\">$date, $time</li>
	</ul>

    ... to create ...

	<ul class=\"articledetails\">
		<li class=\"author\">$row_blog[author]</li>
		<li class=\"date\">$date, $time</li>
	</ul>
	require_once "../plugins/adsense/index.php";
	<p>$details</p>

 5. To add the google adsense banner to the home page under each blog,
    ammend /home/index.php to include the plug-in:

      // plugin-adsense-v0.1
      require_once "../plugins/adsense/index.php";

    ... under the lines (approximately line 24) ...

	<ul class=\"articledetails\">
		<li class=\"author\">$row_blog[author]</li>
		<li class=\"date\">$date, $time</li>
	</ul>

    ... to create ...

	<ul class=\"articledetails\">
		<li class=\"author\">$row_blog[author]</li>
		<li class=\"date\">$date, $time</li>
	</ul>
	require_once "../plugins/adsense/index.php";
	<p>$details</p>
