Arkadaşlar kullandığım bir scriptte forumumun son konularını ekmek istiyorum. Özel bir php sayfası oluşturdum. "son-mesajlar.php"
<?php require("SSI.php"); ?>
<html>
<head><meta http-equiv='Content-Type' content='text/html; charset=UTF-8'></head>
<body>
<?php
ssi_recentPosts($num_recent = 40, $exclude_boards = null, $output_method = 'echo');
?>
</body>
</html>ekledim. Bu sayfa forumdaki 40 son mesajı çekiyor. Sonra sistemime ait olan kodlama biçiminde "deneme.php" dosyası oluşturarak aşağıdaki kodları ekledim.
<?php
include "header.php";
include "son-mesajlar.php";
include "footer.php";
?>
ekledim. Şu an için görünürde herşey normal ama deneme.php dosyasını yazdığımda. Son mesajlar en üstte header ve footer en altta kalıyor. İframe kullanınca sorunsuz çalışıyor ama iframesiz olarak çağırmak istiyorum.