vote up 4 vote down star

I just found out (the hard way), that when you have a HTML form with action="", Webkit browsers treat it differently to Firefox and Internet Explorer.

In FF and IE, these two form tags are equivalent:

<form method="post" action="">

<form method="post">

They will both submit the form back to the same page. Safari and Chrome however will send that first form to the default page (index.php, or whatever) - the second form works the same as FF/IE.

I've quickly hacked my code so that anywhere where it would normally print an empty action, it doesn't add an action attribute at all.

This seems very messy and not the best way to be doing things. Can anyone suggest a better method? Also, can anyone enlighten me about why Webkit would do such a thing?

flag

67% accept rate

5 Answers

vote up 5 vote down

The best way in my opinion would be not to omit the action attribute (which would not validate) but to specify the actual action for the form. Is there a reason you are not specifying the action?

link|flag
it's a generic form which is on many pages, some of which could have a series of GET parameters. I've found it much easier to do action="" than to recreate the URL and encode it properly. – nickf Jan 6 '09 at 2:42
I actually have a helper that parses the url parameters and recreates it accordingly, which I use in most of my projects. Are you using a router pattern? it really helps if your URLs have semantics which are predictable and can be broken down easily. – Eran Galperin Jan 6 '09 at 2:49
vote up 5 vote down

I usually use

<form method='POST' action='?'>

This means the current URL but with no parameters.

link|flag
I do this, except I conform to XHTML by using doublequotes. =] – strager Mar 5 at 2:37
1  
You can use single quotes and still have valid XHTML; you don't have to use double quotes. – Rudd Zwolinski Mar 5 at 2:59
Oh, my bad. I must be misunderstanding the standards than. Anyway, I prefer doublequotes. – strager Mar 5 at 3:06
Actually, I thought it was the other way around. No matter. – staticsan Mar 5 at 6:21
vote up 1 vote down

I've always used (in PHP)

<form method="post" action="<?php echo strip_tags($_SERVER['REQUEST_URI']); ?>">

To get my forms to submit to themselves. This however, isn't enough to cover XSS attacks. I've now dedicated a question to this aspect above.

link|flag
As I already said: Use htmlspecialchars() and not striptags()! – Gumbo Mar 5 at 23:49
vote up 2 vote down

This has/was apparently filed as a bug against webkit here

link|flag
vote up 0 vote down

The action attribute is required but you can specify an empty URI reference that referes to the current URI:

<form method="POST" action="">
link|flag
...except that doesn't work in Webkit browsers, as mentioned in the OP. – nickf Mar 5 at 23:58
The second example is not valid HTML either. – Gumbo Mar 6 at 0:05
well no, but it actually works, which is slightly more important. – nickf Mar 6 at 1:01
No, it actually doesn’t work. – Gumbo Mar 6 at 9:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.