PLEASE HELP! I am frustrated.  Here is the scenario:

I am creating a demo disk consisting of MySQL,PHP,Apache to run on windows
98.  I already have my program running fine on Linux.
I copied over the php files and did the correct dos conversion on them.  I
had to make minor modifications to adjust for a windows environment (paths,
etc), but no major code changes.  Anyway, now many things are broken.  I am
listing these in the order of probably easiest to fix.

1. Duplicate rows coming back from SQL query, but query from console returns
correct number of rows.  Again, this works fine on the linux setup.

2. I have a submit button that looks like this:
<button type=submit name=action value=add>Add</Button>
And corresponding PHP is:
if ($action == "add"){
    do something;
}
This works fine in Netscape.  In IE, however, the $action variable is
getting set to "Add" and not "add" and hence the php test is failing.  Now I
know that it would be trivial to chanfe the php test to "Add", but again,
this exact code works fine on the Linux setup.

What could be so different about Apache/PHP/MySQL in a windows environment.
I am reluctant to post further code, but if you think it is necessary, I
will.

Thanks In Advance,
Chris Deam



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to