My main page is HTML (as you can see by viewing the source) but it has a .php extension.
http://www.synthpopavenue.gr/
The last10.php page work perfectly (except the wrong time)
http://www.synthpopavenue.gr/last10.php
but I cannot seem to be able to include it into the main page.
I have tried all the following:
Code:
<?php require("last10.php");?>
<?php include("last10.php");?>
<!--#include file="last10.php"-->
<!--#require file="last10.php"-->
<!--#include virtual="last10.php"-->
<!--#require virtual="last10.php"-->
<?php
include ('./last10.php');
?>
<?php
include ('http://www.synthpopavenue.gr/last10.php');
?>
but nothing seems to work

it just doesn't show up
any ideas?
thanx in advance