I just installed php running alongside xitami, under windows ME
I noticed that it takes ages for php to process even a single form when passing a variable from one script to another.
My form is a simple,
---begin name1.php---
<Form method='post' action='name2.php'>
<Input type='edit' name='nameVar' length=100>
<Input type='submit' name='My name is?'>
</Form>
---end name1.php---
My script is,
---begin name2.php---
<?php
print ("My name is $nameVar");
?>
---end name2.php---
When I enter some letters in the edit box and press the submit button, it takes AGES for php/xitami to process the form and output the result.
Anyone can help me here?