देशभाषा की उन्नति से ही देशोन्नति होती है। - सुधाकर द्विवेदी।
$sd1="select * from ".TBL_FEST." where festive_id='".$_GET['festid']."'and festive_status=1";
$qd1=$database->execute($sd1);
$rd1=mysqli_fetch_array($qd1);
//echo '
';
// print_r($rd1);
?>
echo $rd1['festive_title']; ?>
//echo $rowpost['post_content'];
$adsdata = $database->execute("SELECT * FROM ".TBL_ADS." where type=1 and landing_page='".$rd1['festive_url']."' and status=1");
while ($row = mysqli_fetch_array($adsdata)) {
$adsdataitem[] = $row;
}
$content = explode('
', stripslashes($rd1['festive_content']));
$i=0;
foreach ($content as $key => $value) {
echo $value;
if($i < count($content)-1){
echo $adsdataitem[$i]['adscript'];
}
$i++;
}
?>
//echo $rd1['festive_content'];?>