Topic: Confusing problem
Hey there,
I've got a really hard problem (for me). Okay, so i'm trying to include a quick-search-field. In the index.php there is a right and a left column. I want to integrate the search field in the right column and want to show the "search-results" on the left column.
The index.php is in the root folder of my server. Cutenews is in root/cutenews.
So i tried to include the cutenews/search.php of cutenews with the following code (in the index.php):
<?PHP
$PHP_SELF = 'index.php';
$QUERY_STRING = 'action=search';
include("cutenews/search.php");
?>
but this does not work...
do you know what my problem is? can anyone help me??