sazzie Posted May 15, 2007 Share Posted May 15, 2007 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. <?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> <?php echo"Process.php is responding!"; ?> Below is my addtype modification from the httpd.conf file. 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. Link to comment https://forums.phpfreaks.com/topic/51474-wamp-mobile-emulator-help/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.