|
|
 Robert | 2006-07-13 12:02:08 |
I put the simple chat scripts under my IIS web running PHP 5. It seems to work up to a point...
the 'submit.php' script never executes. I can't figure out why. The The send() works upon submit, and 'refresh.php' script does get executed, but not submit.php. So, the input is never displayed because it never gets stuffed into the mySql DB table.
Thoughts?
Bob |
| |
2. Re: IIS and script |
|
Reply |
|
|
 Ashraf Gheith | 2006-07-17 06:45:48 - In reply to message 1 from Robert |
Hi,
I did not not test it on IIs, bur I will try to test it soon..
Can you please provide me more about this problem..
regrads.. |
| |
3. Re: IIS and script |
|
Reply |
|
|
 Mario Martinez | 2006-09-17 14:15:18 - In reply to message 1 from Robert |
Please review your html code: are you using a table? NEVER place either <form> </form> tags irregularly among <td> or <tr> table tags. Just wrap the entire table with the form or place the form INSIDE a cell.
<form><table><tr><td><inputs></td></tr></table></form>
or:
<table><tr><td><form><inputs></form></td></tr></table>
Mario. |
| |
4. Re: IIS and script |
|
Reply |
|
|
 Ashraf Gheith | 2006-09-18 06:49:39 - In reply to message 3 from Mario Martinez |
Thank you for your note..
I will work on that.. |
|