|
Posted by Japhy on 11/16/43 11:28
Hello,
I'm am pulling data from a mysql db and want to use the data to
populate a <ul.
Here are relavent parts of my code :
$wohdate = mysql_result($wohRS,$wohndx,woh_date);
$woh_display .="<li>".$wohdate."</li>" ;
$TemplateText = Replace($TemplateText,"@$wohdisplayndx@",$woh_display);
print($TemplateText) ;
So, I have 8 woh_dates that I retrieve (verified with an echo).
My page only displays the first of the 8.
ie :
2000-01-01
2001-01-01
2002-01-01
are retrieved, but only 2000-01-01 is displayed on the page.
Something wrong with appending as I am doing in
$woh_display .="<li>".$wohdate."</li>" ;
Thanks!
[Back to original message]
|