[PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-19 Thread scubak1w1
Micah Gersten news.php@micahscomputing.com wrote in message news:3e.68.30999.cd50a...@pb1.pair.com... scubak1w1 wrote: Hello, Banging my head against this one... Briefly: - I have two forms on the same page - both forms are: action=?php print $_SERVER['PHP_SELF']; ? method=post

[PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-19 Thread scubak1w1
Ross McKay ro...@zeta.org.au wrote in message news:lv4kr4psfniltjns3p914aj4s7s6nna...@4ax.com... On Thu, 12 Mar 2009 18:39:38 -0600, scubak1w1 wrote: [...] In the non-IE browsers I have tried (Firefox, Chrome, Opera), the first form uploads the file properly, the 2nd form's submit is 'turned

Re: [PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-19 Thread scubak1w1
haliphax halip...@gmail.com wrote in message news:952625160903130640l7c1a2f0bh8af2b6ffc447b...@mail.gmail.com... On Fri, Mar 13, 2009 at 3:18 AM, 9el le...@phpxperts.net wrote: It sounds like a script error rather than a PHP error. Use Firebug which will show you the HTML as it is updated by

[PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-19 Thread Ross McKay
On Thu, 19 Mar 2009 16:27:38 -0600, scubak1w1 wrote: I have it set in a div tag and use AJAX... When it is 'off' (i..e, when the page first opens) it is simply a grayed out image with a 'tool tip' to indicate it is not functional... Once the array key exists for the first form, I have (sic)

[PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-13 Thread Micah Gersten
scubak1w1 wrote: Hello, Banging my head against this one... Briefly: - I have two forms on the same page - both forms are: action=?php print $_SERVER['PHP_SELF']; ? method=post - both forms gave unique ids - both forms have a hidden file of the type input type=hidden

[PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-13 Thread Ross McKay
On Thu, 12 Mar 2009 18:39:38 -0600, scubak1w1 wrote: [...] In the non-IE browsers I have tried (Firefox, Chrome, Opera), the first form uploads the file properly, the 2nd form's submit is 'turned on' by AJAX - BUT the submit button on the 2nd form doesn't seem to do anything - i.e., the

Re: [PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-13 Thread Ashley Sheridan
On Fri, 2009-03-13 at 02:06 -0500, Micah Gersten wrote: scubak1w1 wrote: Hello, Banging my head against this one... Briefly: - I have two forms on the same page - both forms are: action=?php print $_SERVER['PHP_SELF']; ? method=post - both forms gave unique ids - both

Re: [PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-13 Thread 9el
It sounds like a script error rather than a PHP error. Use Firebug which will show you the HTML as it is updated by Javascript, so you can see where the problem is. I'm willing to bet that the Javascript code you are using is IE only. Yeah, php is never browser specific. It is rendered to

Re: [PHP] Re: 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-13 Thread haliphax
On Fri, Mar 13, 2009 at 3:18 AM, 9el le...@phpxperts.net wrote: It sounds like a script error rather than a PHP error. Use Firebug which will show you the HTML as it is updated by Javascript, so you can see where the problem is. I'm willing to bet that the Javascript code you are using is IE