|
Posted by Jerry Stuckle on 11/28/54 11:28
Japhy wrote:
> 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!
>
Japhy,
How about a little more code so we can see what you're doing?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|