Is it possible to show the database values in jquery thickbox
In hiddenModalContent div is it possible to display the database value as once thickbox is opening it just 开发者_Go百科showing nothing
<?php
foreach($this->list_details as $key=>$details)
{?>
<a href="#TB_inline?height=300&width=300&inlineId=hiddenModalContent&modal=false" class="thickbox"><div class="sc_content_subheading"><? echo $this->escape($details['list_name'])?></div></a>
<div id="hiddenModalContent" style="display:none;">
<span class="content_subheading">List name </span><? echo $details['list_name'];?><br/>
</div>
<?php }?>
It seems all you are only outputting the list name. What else in the array would you like to show?
精彩评论