PHP installed: version 5.0.5
My example:
index.html:
<form action=service.php method=POST>
<INPUT TYPE=Submit VALUE="Send">
</form>
service.php:
<HTML>
<BODY>
HTML Code was executed
<BR />
<? echo "PHP Code was executed" ?>
</BODY>
</HTML>
Have this problem:
When I run only the service.php, both html/php code is working.
But when I start with index.html in which the code is calling service.php after submit button click, whole the code in service.php is ignored and only blank page will appear.
Then how can I get inputs from users into my php code?
Maybe I've installed PHP (5.0.5) badly? But where can I make a mistake, however the installation is trivial, isn't it?
Thanks...