Topic: extern.php (print last topics) - troubleshotting :(
Hi,
I try to print a list of last topics on my homepage.
The basic usage of extern.php does't work I try this:
<?php
$cp = curl_init("http://terrainland.com/forum/extern.php?action=active&show=7");
curl_exec($cp);
?>
but this does not works... then I try this:
$old_get = $_GET;
$_GET = array();
$_GET['action'] = 'active';
include 'forum/extern.php';
$_GET = $old_get;
The forum is a subfolder of main site... and I have error:
Fatal error: require() [function.require]: Failed opening required './include/dblayer/mysql.php' (include_path='.:/:/usr/php/pear') in /forum/include/dblayer/common_db.php on line 48
(see in the footer of site: www.kursprawojazdy.pl/_index.php).
What I do wrong?
P.S. Sorry for my engish
Regards,
Fresh