Dynamic Email Field - LinkConnector

Status
Not open for further replies.

Gibster

New member
Mar 13, 2007
73
0
0
Hi Everyone,

I need some help! I have been trying to launch a campaign with LinkConnector.com for over a month or longer now. The campaign has been ready to go for a month, but the support team at LinkConnector has failed to explain me how the heck do I insert an email address "dynamically" in HTML and in this code.

This is the email from the support guy in LinkConnector. I am not a programmer and I have no programmers to do this for me. Could someone help me and make sense of what is it that I actually need to do. Email below:

"I’m not sure if you do the coding for your site yourself or have someone do it for you. You get an email address when a user subscribes to your program. What you would need to do is dynamically place that field behind the “oid=” in the LinkConnector code. It might look similar to this:

<img src="http://www.linkconnector.com/traffic_merchant.php?lc=000000001583&amt=&oid=<customer_email_adress>" border="0" width="1" height="1">

Hope this helps. Thanks!
"

Any help would be greatly appreciated!! See if I can finally launch my campaign.

Cheers
Gibran
 


So what you would do is this

Code:
<html>
<head>
<title>Some Title</title>
</head>
<body>
<?php
if (isset($_POST['submit'])) {
if (strlen($_POST['email']) > 0) {
$email = strip_tags($_POST['email']);
print '<img src="http://www.linkconnector.com/traffic_merchant.php?lc=000000001583&amt=&oid='.$email.'" border="0" width="1" height="1">';
}
}
?>
<form action="" method="post">
<input type="text" name="email" value="" /><br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>

Beware I haven't tried that out, if you need any help, PM me
 
Status
Not open for further replies.