Ticket #819 (closed defect: invalid)

Opened 7 years ago

Last modified 7 years ago

Content not submitted in Firefox 1.5

Reported by: mikael@… Owned by: gogo
Priority: highest Milestone:
Component: Xinha Core Version:
Severity: normal Keywords:
Cc:

Description

Hello,

I have a strange problem with Xinha in Firefox 1.5.04 (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060508)

The content wont be submitted:

http://www.argus.nu/notworking.php

It works great in Internet Explorer. Any help in this matter are highly appreciated.

Change History

Changed 7 years ago by guest

  • status changed from new to closed
  • resolution set to fixed

I think the problem is your form tag as you have placed it somewhere inbetween table tags:

<table width=100%>
<tr><td>
<form action="notworking.php" method="post" name="skrivtext">
<tr><td>

I'm pretty sure it will work if you do it like this

<form action="notworking.php" method="post" name="skrivtext">
<table width=100%>
<tr><td>
<textarea ...
</table>
</form>

By the way, would you mind sharing your insert/edit snippets plugin? Seems like a perfect addition to Xinha on PHP systems (well at least I really could use it ;D ).

Changed 7 years ago by guest

  • status changed from closed to reopened
  • resolution deleted

Changed 7 years ago by mokhet

  • status changed from reopened to closed
  • resolution set to invalid

Well, the first comment is totally right. With invalid markup you cant except consistent result. I have tried the original markup from argus.nu and as stated, it's not sending content when submit.

However, once the <form> tag is correctly inserted in the markup (second comment), it's working like a charm http://mokhet.com/xinha/examples/819.php

So, since it's not Xinha related but good HTML practices related, i'm closing this ticket.

Note: See TracTickets for help on using tickets.