$host = $_SERVER["HTTP_HOST"];
$small = "http://$host/themes/default/images/mytextgraphics-130x40.gif";
$alt = "MyTextGraphics.com - Text Generator";
$small_link = "

";
$links = array(
"small" => array(
"image" => "http://$host/themes/default/images/mytextgraphics-130x40.gif",
"label" => "Small 130x40",
),
"medium" => array(
"image" => "http://$host/themes/default/images/mytextgraphics-234x60.gif",
"label" => "Medium 234x60 (Half banner)",
),
"large" => array(
"image" => "http://$host/themes/default/images/mytextgraphics-500x110.gif",
"label" => "Large 500x110",
),
);
foreach ($links as $link) {
$label = $link["label"];
$image = $link["image"];
$link = "

";
$code = htmlentities($link);
print "
$label
$link
";
}
?>