ave tried various variations of links and <img href=" blah blah but keep getting errors. all i want to do is make the logo.gif a link.
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Content-type: text/vnd.wap.wml;");
echo '<?xml version="1.0"?>';
print '<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">'.
'<wml>
<head><meta http-equiv="Cache-Control" content="no-cache" forua="true"/></head>';
echo "<card id=\"banner\" title=\"banner\"><p align=\"center\">";
print "<img src=\"1.gif\" alt =\"banner\"/>
<a href=\"top20.php\">Top 20 sites</a>
<a href=\"newest.php\">Latest 20 sites</a>
Choose Catagory:
<select name=\"cat\">
<option value=\"1\">Adult</option>
<option value=\"2\">Downloads</option>
<option value=\"3\">Portal</option>
<option value=\"4\">Chat/Forum</option>
<option value=\"5\">Other</option>
</select>
<a href=\"viewcat.php?cat=$(cat)\">View Catagory</a>
<a href=\"new.wml\">Add My Site</a>
<a href=\"edit.php\">Edit My site</a>
";
echo "
<img src=\"an93.gif\" alt =\"line\"/>
<img src=\"logo.gif\" alt =\"banner\"/>
NEED TO ADD THIS TO A LINK ??????
<img src=\"an93.gif\" alt =\"line\"/>
</p></card></wml>";
?>
cheers
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Content-type: text/vnd.wap.wml;");
echo '<?xml version="1.0"?>';
print '<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">'.
'<wml>
<head><meta http-equiv="Cache-Control" content="no-cache" forua="true"/></head>';
echo "<card id=\"banner\" title=\"banner\"><p align=\"center\">";
print "<img src=\"1.gif\" alt =\"banner\"/>
<a href=\"top20.php\">Top 20 sites</a>
<a href=\"newest.php\">Latest 20 sites</a>
Choose Catagory:
<select name=\"cat\">
<option value=\"1\">Adult</option>
<option value=\"2\">Downloads</option>
<option value=\"3\">Portal</option>
<option value=\"4\">Chat/Forum</option>
<option value=\"5\">Other</option>
</select>
<a href=\"viewcat.php?cat=$(cat)\">View Catagory</a>
<a href=\"new.wml\">Add My Site</a>
<a href=\"edit.php\">Edit My site</a>
";
echo "
<img src=\"an93.gif\" alt =\"line\"/>
<img src=\"logo.gif\" alt =\"banner\"/>
NEED TO ADD THIS TO A LINK ??????
<img src=\"an93.gif\" alt =\"line\"/>
</p></card></wml>";
?>
cheers
Comment