OK, this seems like a header problem.
try the following
- HTML code as is
- send_simpleform .php:
if that behaves the same (quite probable) you need to check the Apache or IIS configuration (whichever server you have). it might be that PHP is not registered as handler.
and while in Chrome, you can check the file's headers in the developer tools.
try the following
- HTML code as is
- send_simpleform .php:
Code:
<?php header("Content-Type: text/plain"); echo "done"; ?>
and while in Chrome, you can check the file's headers in the developer tools.
Comment