Login   Register  
PHP Classes
elePHPant
Icontem

File: simple_example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Arturs Sosins  >  Pop under class  >  simple_example.php  >  Download  
File: simple_example.php
Role: Example script
Content type: text/plain
Description: Simple implementation example
Class: Pop under class
Display interstitial advertising
Author: By
Last change: credits changed
Date: 2011-04-25 13:09
Size: 1,523 bytes
 

Contents

Class file image Download
<?php
/************************************************************* 
 * This script is developed by Arturs Sosins aka ar2rsawseen, http://webcodingeasy.com 
 * Fee free to distribute and modify code, but keep reference to its creator 
 * 
 * Pop under class allows you to implement pop under advertising to your website.
 * You can customize probability of ads to appear, time for how long to show advertisement and much more.
 * Language and template files included to provide full outlook customization
 * 
 * For more information, examples and online documentation visit:  
 * http://webcodingeasy.com/PHP-classes/Implement-pop-under-advertising-to-your-site-using-pop-under-class
**************************************************************/

//declaring class instance
include("./pop_under.class.php");
$popunder = new pop_under();

//putting in link to show with optional title text
$popunder->add_url("http://code-snippets.co.cc/""Code snippets");
$popunder->add_url("http://www.phpclasses.org/browse/author/838850.html""Arturs Sosin's PHP classes");

//for testing purpose visitors won't be marked
$popunder->use_mark(false);

//and of course showing ads
//put this before any other output
$popunder->show_ads();


//and some content goes here
echo "<p>Content</p>";
echo 
"<p>Default probability of popunder to appear is 10% on every pageview, so just keep refreshing till you get it ;)</p>";
echo 
"<p><a href='?id=".($_GET['id']+1)."'>Goto ".($_GET['id']+1)."</a></p>";

?>