Hi,
I am developing web pages for mobile phones and I can not get
my php scripts to execute on my nokia emulator.
It has worked before but I had to uninstall and reintall apache.
I put in the necessary addtype but it no longer co-operates.
I use WAMP 5 which is constituted by PHP 5.0.4 , Apache 1.3.33
and MySQL 4.1.7
My simple scripts I am trying
to execute on my mobile emulator. One script calls the other via a form
submit button.
Code:
<?php
header('Content-Type: text/html');
?>
<html>
<head>
<title>
Next Page
</title>
</head>
<body>
Interface.php is active! - inside HERE?
<form method = "post" action="process.php">
<input type = "submit"/>
</form>
<?php
?>
</body>
</html>
Code:
<?php
echo"Process.php is responding!";
?>
Below is my addtype modification from the httpd.conf file.
Code:
AddType application/x-tar .tgz
AddType application/x-httpd-php .php .html .htm
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .phtml
I know this works as I had it working before. Can someone please help me.