Home > > Coreg

Coreg Mystery! Can someone Please help. (3)


03-25-2012 03:21 PM #1 chilliflakes (Member)
Coreg Mystery! Can someone Please help.

I read all threads and everything seems to be very confusing as of now. I am not a coder so please bear with me. If someone can help that would be appreciated.

I use cpvlab , photoshop and dreamweaver. I read almost all threads but it is confusing still. SO maybe its time to validate the steps here with seniors.

1) create the first page in photoshop. This page would do the selling and may or maynot have an email box in it.
2) In second page there is a submit form with fields like name, email and cell number. It is this form where data is collected.
3) The data collected in 2nd page is there transferred to next page which ideally should be a iframe for silverpath or gametheory.

now confusion starts here.
1) how do we iframe the third page
2) values are passed from second to third page. this means in thrid page while working on dreamweaver i should paste the code that would help pass on values.
3) generally on third page i see that people are asked to confirm their mobile number with a pin. Is this pin page that of SP and GT or then it has to be on your own.

So you can see how confusing things are especially for newbies. I would appreciate if one can do step by step like

step 1- create your offer
step 2- create the collection page. paste this code here and here.
step 3- create the iframe page like this and this. not paste code here and here.

things have been jumbled up. I would appreciate if someone can spare some time. this would help many i am sure.

thanks in advance.


03-25-2012 04:34 PM #2 MrGoogle (Member)

I was just like you about 2 weeks ago so I am no expert or coder but...
first download all the coreg templates from this forum(there are at least 3-4 of them).
You just have to look at them really hard to understand what they do, compare each of them to see which one you like to go with.
I went with this one,
http://stmforum.com/forum/showthread...-by-Step-Guide
I have read at least 2-3 times all the posts in coreg and around 10 times with 3 sticky posts.
Answers to your all 3 questions are there in bbrock32's Introduction to Coreg - Step by Step Guide.
1) how do we iframe the third page
download this zip file and upload them to your server
http://stmforum.com/files/walmart.zip
Take a look at step2.php file and you make some changes to see what they do.
2) values are passed from second to third page. this means in thrid page while working on dreamweaver i should paste the code that would help pass on values.
You don't need DW or any other to make 3rd page, it is iframed page.
Again, look at step2.php file.
3) generally on third page i see that people are asked to confirm their mobile number with a pin. Is this pin page that of SP and GT or then it has to be on your own.
That is from SP or GT.
Again, look at step2.php file.
Well here is step2.php file,
<?
session_start();
$t202subid=$_COOKIE['tracking202subid'];
$fname=@$_GET['leadFirstName'];
$lname=@$_GET['leadLastName'];
$email=@$_GET['leadEmail'];
$p1=@$_GET['leadCellPhone1'];
$p2=@$_GET['leadCellPhone2'];
$p3=@$_GET['leadCellPhone3'];
$phone=$p1.$p2.$p3;
$spkey="silverpath key goes here";
$gtkey="gametheory key goes here";
$exit="exiturlgoeshere";
$exit=urlencode($exit);
$spurl="http://www.silver-path.com/path.php?src_key=$spkey&email=$email&first_name=$f name&last_name=$lname&mobile_number=$phone&country =US&subid1=$t202subid&exit_url=$exit";
$gturl="http://gtoffers.com/coreg/entry.php?p=$gtkey&limit=6&email=$email&framed=1&f name=$fname&lname=$lname&phone=$phone&sid=$t202sub id&redirect=$exit";

//THis code is used to split traffic 50% - 50% between SP and GT
$nr=rand (0,1);

if($nr==0)
$url=$spurl;
else
$url=$gturl;


?>
<!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>
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' />
<title>Claim Your FREE $1,000 WalMart Gift Card!</title>
<script src='content/jScript/jQuery.js' type='text/javascript'></script>
<link rel='stylesheet' href='content/generic/css/errorHandling.css' type='text/css' />
<link rel='stylesheet' href='content/generic/pathStyle/css/regFormStyle.css' type='text/css' />
<style>
.stars{
color:white;
font-weight:bold;
font-size:20px;
}
#survey-timer{
color:yellow;
}
</style>

</head>
<body class='' style='background-color: #0353b9'>

<center>
<div style="padding-top: 8px; text-align: center; padding-bottom: 8px;">

<strong style='font-size: 18px;color:white;'>
<span class="stars"><b>Step 2: </b></span>Confirm your phone number. This is a required step to get your FREE $1000 Walmart Gift Card.<br/> You have <span id="survey-timer">153.6</span> seconds to obtain the confirmation PIN number. <span class="stars"></span> </strong>

</div>
</center>


<script type="text/javascript">

window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);

var m=0
var s=180
var timer_container=document.getElementById("survey-timer");
timer_container.innerHTML=s+"."+m;

function timer(){

if (m<=0){
m=9;
s-=1;
}
if(s>=0){
m-=1;
timer_container.innerHTML=s+"."+m;
setTimeout(timer,100);
}
}
timer();

</script>

<div style="padding-top: 0px;">
<iframe src="<?=$url?>" id="coreg" scrolling="no" frameborder="0" height="1200" width="100%"></iframe>

</div>

</body>
</html>


03-25-2012 04:37 PM #3 dubbsy (Member)

^^ what MrGoogle just said... plus there is a coreg landing page creator here in the forum, watch the videos and use that, it's a great tool


Home > > Coreg