Maybe this will help;
first of all, enclose it in quotation marks, just make sure you escape them;
PHP Code:
<?php
echo "<a href=\"aim:........
secondly, collect your data as an array, and use it as such;
PHP Code:
<?php
$query = mysql_query($view);
$aantalrecords = mysql_num_rows($query);
while ($list = mysql_fetch_array($query)) {
echo "<p><table><tr><td><b>Name: </b></td><td>".$list['naam']."</td></tr><br>";
echo "<tr><td><b>Screen Name: </b></td><td><a href=\"aim:goim?screenname=".$list['email']."\">".$list['email']."</a></td></tr><br>";
echo "</a><tr><td><b>Comments: </b></td><td>".$list['commentaar']."</td></tr><br></table></p>";
echo "<hr>";
}
__________________
Theres 10 types of people; those who understand binary, and those who don't.
webmaster and webdeveloper resources, http://www.webworrks.com
Last edited by webwoRRks; 08-07-2004 at 04:03 AM..
Reason: Missed second speach marks
|