vote up 2 vote down star

I want to post ($_GET as well as $_POST) data by clicking on links (enclosed with <a>) and not the regular form 'submit' button. preferred language : PHP

I have seen this in a lot of todays websites, where forms are submitted by clicking on buttons looking like hyperlinks. so was wondering how it could be done.

Thanks in advance

flag

9 Answers

vote up 6 vote down check

This post on Ajaxian might help. It links to a pretty in depth blog post that shows you how to apply css to buttons so that they look like links.

The advantage here over using a proper link is the "fake link" really is a button, so it behaves exactly like a button, only it looks like a link. Spiders won't follow it, screen readers will treat it differently, it's a more "correct" thing to do in terms of launching a http post.

link|flag
'fake' eh? ;-) thanks – OrangeRind Jun 23 at 13:42
No worries. This turned out to be quite a hot little question :-) – Dan F Jun 23 at 13:49
might consider voting it up. ;) – OrangeRind Jun 23 at 18:59
vote up -1 vote down

Hey Buddy, judging by

preferred language : PHP

I guess, that you're new to the world of web programming.

And

clicking on buttons looking like hyperlinks

If you want to make buttons look like hyperlinks, you may just change the cursor from pointer to hand. Unless you look at the source code, your button is like a hyperlink!

<input type="submit" src="someimage" style="cursor: hand;" />

This will be sufficient if you want to make it look like a hyperlink.

link|flag
1  
Actually... cursor: pointer is better. cursor: hand is a very old IE specific style that doesn't work anywhere outside IE and Opera. See quirksmode.org/css/cursor.html for more details – Dan F Jun 23 at 13:19
And there is rather more difference between the default rendering of a link and a button than the cursor used. – David Dorward Jun 23 at 14:37
vote up 2 vote down

As seen from the other answers, you have to use JavaScript if you want to submit user data from a form with a link. That means you exclude anyone with JavaScript turned off, unavailable, or incompatible with your code. On the other hand, you could try to style a button with CSS to make it look like a link.

link|flag
vote up 7 vote down

Forms are designed to be submitted with buttons. You can use JavaScript to make a link submit it, but this will break when JS is not available. Even if JavaScript is available, using a link will be using a control which won't show up when a screen reader is in "Forms Mode", leaving screen reader users without any obvious way to submit the form.

CSS is a safer alternative (see http://tom.me.uk/scripting/submit.html).

link|flag
Even in light of our little fit - your answer still gets my vote ;) – Jonathan Sampson Jun 23 at 13:25
thanks a lot! really helped! – OrangeRind Jun 23 at 13:44
@Jonathan Thanks :) – David Dorward Jun 23 at 14:37
vote up 2 vote down

You could do something like:

<a href='myform.php?name=Bob&surname=Terrier'>Click here</a>

That will submit name and surname as GET variables to the form.

Beware any form that modifies data though, as search engines and spiders will traverse links where they don't traverse forms.

link|flag
+1 for mentioning the "GET" method while submitting data via URLs. – TFM Jun 23 at 13:01
i need to post &_POST data as well – OrangeRind Jun 23 at 13:02
@OrangeRind: You should then update your original question, there's no mention of "POST" in there. – TFM Jun 23 at 13:04
@TFM Umm. Word number 4 of the question? – David Dorward Jun 23 at 13:05
"I want to post data" was a bit of a giveaway :-) – Dan F Jun 23 at 13:06
show 4 more comments
vote up -1 vote down
<form name="myForm">
...
</form>
<a href="#" onclick="document.myForm.submit();">Submit</a>

Obviously you would change this to suit.

link|flag
1  
As fallbacks for when JS is not available go, "A link to the top of the page (#)" is pretty poor. Also, the name attribute for forms is there only for backwards compatibility (with browsers which are now dead). ID should be used instead. – David Dorward Jun 23 at 13:00
fair enough... i just wanted to hack something up quickly :) – Charlie Somerville Jun 23 at 13:22
vote up 0 vote down

You can make use of Javascript to submit the form.

<a href='document.myform.submit()'>Submit Button</a>
link|flag
As URLs go, that is a normal relative URL (but quite an ugly one) – David Dorward Jun 23 at 12:58
i don't know Javascript that well as to submit data. may be you could specify the code for submit() – OrangeRind Jun 23 at 13:09
vote up 0 vote down

Beware posting data by clicking on links! Spiders may follow this links and change data.

You probably want something like:

<a href="#" onclick="form.Submit();">submit</a>
link|flag
1  
As fallbacks for when JS is not available go, "A link to the top of the page (#)" is pretty poor. – David Dorward Jun 23 at 12:59
a good spider won't submit a form if it's method is set to "post" – Adrian Jun 23 at 12:59
vote up -1 vote down

Hyperlinks can submit forms, which is likely what you're seeking. This code will allow your link to have a default behavior, when scripting is disabled:

<a href="enable-scripts.html" class="formSubmit">Submit Data</a>

$("a.formSubmit").click(function(event){
  event.preventDefault();
  $("#myForm").submit();
});

You could also take your solution entirely into jQuery (javascript) without changing your HTML:

If scripting is enabled, the user will see a link. If not, they'll see a button.

$(document).ready(function(){
  var myLink = $("<a>Submit</a>").attr("href", "#").click(function(event){
    event.preventDefault();
    $("#myForm").submit();
  });
  $("#myForm input[type='submit']").replaceWith(myLink);
});
link|flag
-1: relies on a framework when one would be overkill – Charlie Somerville Jun 23 at 12:58
Did the author ask that we not use the common jQuery framework? – Jonathan Sampson Jun 23 at 12:59
1  
Overkill is overkill even if the author doesn't ask that it be avoided. – David Dorward Jun 23 at 13:03
How can a framework possibly be overkill when the question has no context? This answer correctly de-couples the JavaScript from the HTML - combined with a default link that acts sensibly for clients without JavaScript (i.e. NOT href="#") it is a good solution for almost all situations. – Peter Boughton Jun 23 at 13:06
@David, you're solution involves extra css/images - I hardly think you're in the right position to argue a 'pure solution.' The fact is that jQuery is an industry standard, and is not 'overkill' when it comes to solving trivial issues in markup. – Jonathan Sampson Jun 23 at 13:07
show 9 more comments

Your Answer

Get an OpenID
or

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