vote up 1 vote down star

Is there any difference beween:

<form action="">

... and:

<form action=".">

?

flag

80% accept rate

1 Answer

vote up 6 vote down check

empty string normally indicates current url (e.g., http://example.com/a/test.html)
'.' - current 'directory' (e.g., http://example.com/a/)

link|flag
Doesn't '.' indicate the current directory and '../' indicate the parent directory? – David Kolar Feb 3 at 16:31
Depends on your definition of 'parent'. The 'current' directory is the 'parent' of the current file... – bobince Feb 3 at 16:35
@David: fixed, thanks – SilentGhost Feb 3 at 16:36

Your Answer

Get an OpenID
or

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