PHP Code:
<pre>
<?php
$aff = array(0 => array('title' => 'A Website Title', 'afurl' => 'http://www.external-affiliate-site.html?affiliateid=1234'),
1 => array('title' => 'Another Website Title', 'afurl' => 'http://www.external-site-training-your-pitbull-made-easy.html?affiliateid=1234'));
print_r($aff);
$id=(int)$_GET['myid'];
$site=$aff[$id]['title'];
$url=$aff[$id]['afurl'];
?>
<a href="<?php echo $url ?>"><?php echo $site ?></a>
Code:
Array
(
[0] => Array
(
[title] => A Website Title
[afurl] => http://www.external-affiliate-site.html?affiliateid=1234
)
[1] => Array
(
[title] => Another Website Title
[afurl] => http://www.external-site-training-your-pitbull-made-easy.html?affiliateid=1234
)
)
Bookmarks