Jump to content

WAMP + mobile emulator help


sazzie

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.