![]() |
| Register | FAQ | Members List | Upgrade / Donate | Search | Today's Posts | Mark Forums Read |
|
|||||||
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Hi All
I found this article on another forum and thought id share it here. This is not my work, i repeat i found it on another forum and just want to share it here. Its for websites that use the ZangoCash Gateway. Basically it lets users have a teaser of your website by tracking the pages they visit. Once they have visited more than 2 pages the ZangoCash Gateway installer will popup. By this time you will have hooked the user to your website and the chance of them installing the Zango Toolbar will increase. I guess this would work best for Video sites, specifically of an adult nature. Code: Code:
<?php
session_start();
$_SESSION['zango'] = 0;
if (isset($_SESSION['views'])) {
if ($_SESSION['views'] < 2) {
$_SESSION['views'] = $_SESSION['views']+ 1;
} else {
$_SESSION['zango'] = 1;
}
} else {
$_SESSION['views'] = 1;
}
?>
<?php
if ($_SESSION['zango'] === 1) {
?>
<!-- zango gateway code START -->
<!-- zango gateway code END -->
<?php
}
?>
<!-- zango gateway code START --> <!-- zango gateway code END --> The above code will allow the visitor to view 2 pages of content before popping up the gateway. To change the number of pages that you want the visitor to see before they get the gateway, change the number '2' on the line if ($_SESSION['views'] < 2) { . Enjoy ![]()
__________________
Luxecash - Pay per install! The Number One Pay Per Install Affiliate Program ★☆ Marketing Multi-Millionaire ☆★ List of Pay Per Install Affiliate Programs |
|
|||
|
I just started my first site and put zango up. I have taken a look at this gateway tweak and wow my conversions went from 1:16 to 1:8 ... I changed the look of the landing page so i have something awsome to offer plus to cut them off when they are hooked is when i get the install =) Im not getting much traffic but from what I am getting I am still capitalizing on them lol
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
![]() |
![]() |