Hi
Script languages can be devided in two groups:
- Serverside
- Clientside
Serverside scripts are script languages like php, perl, c# ..
typical clien side scripts are javascript and vbscript.
what you try to do is, to merge two files together. this has to be serverside. therefore you need a web server, capable to run this script.
on windws machines you will need iis 4 or higher with php extensions installed, on linux you will have no problem.
Your file has to have the right extension. .html is a non serverside parsed extension. use .php3 or php for php4. your include will look like this:
<head>
</head>
<body bgcolor="#ccd0b0" onLoad="">
<?php
include("src/menu.inc");
echo("TEST");
?>