Maybe my question is unclear.
I am calling two queries, namely;
$resNews = $connect->get_query("SELECT id,".strtolower($_GET['lang'])."_heading,".strtolower($_GET['lang'])."_story,DATE_FORMAT(date_ins, '%b %d %Y, %h:%i %p')
FROM news
WHERE ($partsNews)
AND ".strtolower($_GET['lang'])."_heading IS NOT NULL
AND publish = 'yes'");
$resEvents = $connect->get_query("SELECT id,".strtolower($_GET['lang'])."_title,".strtolower($_GET['lang'])."_description,DATE_FORMAT(date_ins, '%b %d %Y, %h:%i %p')
FROM events
WHERE ($partsEvents)
AND ".strtolower($_GET['lang'])."_title IS NOT NULL
AND event_datum >= NOW()
AND publish = 'yes'");
I want to display them seperately, like this;
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<?php
while (($arrNews=mysql_fetch_array($resNews, MYSQL_NUM))!==FALSE) {
?>
<tr>
<td><a href="news_details.php?lang=<?php print $_GET['lang'];?>&newsid=<?php print $arrNews[0];?>"><?php print html_entity_decode($arrNews[1]);?></a> [<i><?php print $arrNews[3]; ?></i>]</td>
</tr>
<tr>
<td><?php print limit_characters(html_entity_decode($arrNews[2]),150);?></td>
</tr>
<?php
}
mysql_free_result($resNews);
?>
<?php
while (($arrEvents=mysql_fetch_array($resEvents, MYSQL_NUM))!==FALSE) {
?>
<tr>
<td><a href="eventdetails.php?lang=<?php print $_GET['lang'];?>&eid=<?php print $arrEvents[0];?>"><?php print html_entity_decode($arrEvents[1]);?></a> [<i><?php print $arrEvents[3]; ?></i>]</td>
</tr>
<tr>
<td><?php print limit_characters(html_entity_decode($arrEvents[2]),150);?></td>
</tr>
<?php
}
mysql_free_result($resEvents);
?>
</table>
I am not getting any results for events, only for news.
Can anyone help me?