473,473 Members | 2,170 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

[Q] Using the POST Method with HTML Anchor Tags

I am certain the answer will be 'NO', but I wanted to ask anyway just
incase I have missed something.

Everyone knows that one pass data to a page in an anchor tag by using
the GET Method:

<a href="http://www.aaa.com/randompage.php?name=data">

What I am wondering is if there was a way to do the same thing, but use
the POST Method instead...?

My purpose in doing so is to keep the URLs the user sees clean by not
putting anything in them that they do not need to see.

This has nothing to do with security concerns as I already know there
would be ways to obtain the data being passed.

If the answer is indeed no, then what methods do people use to pass data
when there is a desire to keep the URLs clean? Cookies? Something else?

Jul 23 '05 #1
7 29706
Eric wrote:
<a href="http://www.aaa.com/randompage.php?name=data">

What I am wondering is if there was a way to do the same thing, but use
the POST Method instead...?

My purpose in doing so is to keep the URLs the user sees clean by not
putting anything in them that they do not need to see.


No, but there are some a couple of things I would do to make your URL
cleaner.

First of all, I would get rid of the ".php" extension. It's really an
implementation detail of how your Web site is built, and looks pretty
ugly to my tastes. Most Web servers have options that would let you use
/randompage instead of /randompage.php if configured properly.

Also, if the data you're passing is really something like a name or ID,
why not make it part of the path instead of putting it in the query
string? PHP puts extra path components in the variable
$_SERVER['PATH_INFO'] for your application to use.

So in the end, your URL would look like:

http://example.com/randompage/data
Jul 23 '05 #2
On Wed, 23 Mar 2005, Eric wrote:
Everyone knows that one pass data to a page in an anchor tag by using
the GET Method:

<a href="http://www.aaa.com/randompage.php?name=data">
Well, some of us know there's PATH_INFO in addition to
QUERY_STRING
What I am wondering is if there was a way to do the same thing, but
use the POST Method instead...?
Are you familiar with the design aims of POST requests, vis a vis
non-idempotent requests, result cacheing, and so forth? If not, then
I'd suggest taking a step back and reviewing that topic, for some
general background.

Browsers are increasingly suppying users with protection against
accidentally re-POSTing a request, and it's a pain in the proverbials
when a significant number of browser moves - in situations where the
user feels the requests should have been idempotent - result
unnecessarily in a browser alert popping up to warn them that they
are risking re-submitting their POST request again.

So I'd suggest that you'd do better to fall into line - as far as
possible - with the general plan, rather than spotting some side issue
and letting it dominate the choice of GET versus POST.
My purpose in doing so is to keep the URLs the user sees clean by
not putting anything in them that they do not need to see.
As another poster commented, you've already *put* something in there
that the user doesn't need to see, namely the .php

Surely -they- are providing the input for this request? So it's not
as if there's anything to hide. And maybe they'd like to bookmark the
URL, which isn't possible with a POST request (sure, you can bookmark
the /page/ which has the POST, but they still have to access that
page, feed in the data, and submit it).
This has nothing to do with security concerns as I already know
there would be ways to obtain the data being passed.
right
If the answer is indeed no, then what methods do people use to pass data
when there is a desire to keep the URLs clean? Cookies?


It's a possible mechanism, certainly. But some folks get annoyed by
the hail of cookies that get showered on them by some web sites, and
they finally lose patience and block the things altogether (sure, you
and I know there are more finely-divided ways of controlling them, but
users have the last word anyway). So it's best if you keep some kind
of fallback mechanism that you can use if that happens. There are
certainly some sites which use cookies for maintaining state if they
find that the user allows them, but if they can't, then you see a
random-looking string appearing in the URL instead, for the same
purpose.

(Though I did throw one site into complete confusion when one of its
advertising banners tried to hurl cookies at me, and I turned cookies
off in annoyance - which also disabled the session cookie that the
site itself had previously been using. Their server went into orbit,
redirecting to the same URL over and over until my browser called a
halt to it.)
Jul 23 '05 #3
Alan J. Flavell <fl*****@ph.gla.ac.uk> wrote:
Are you familiar with the design aims of POST requests, vis a vis
non-idempotent requests, result cacheing, and so forth? If not, then
I'd suggest taking a step back and reviewing that topic, for some
general background.


Can you provide some references?

Jul 23 '05 #4
Leif K-Brooks <eu*****@ecritters.biz> wrote:
Eric wrote:
<a href="http://www.aaa.com/randompage.php?name=data">

What I am wondering is if there was a way to do the same thing, but use
the POST Method instead...?

My purpose in doing so is to keep the URLs the user sees clean by not
putting anything in them that they do not need to see.
No, but there are some a couple of things I would do to make your URL
cleaner.

First of all, I would get rid of the ".php" extension. It's really an
implementation detail of how your Web site is built, and looks pretty
ugly to my tastes.


Interesting. I had not considered that before.
Most Web servers have options that would let you use
/randompage instead of /randompage.php if configured properly.

Also, if the data you're passing is really something like a name or ID,
why not make it part of the path instead of putting it in the query
string? PHP puts extra path components in the variable
$_SERVER['PATH_INFO'] for your application to use.

So in the end, your URL would look like:

http://example.com/randompage/data


It could be something like a name or ID, but it could also be just about
any other random piece of data one might see being passed via the GET
Method and, perhaps, multiple pieces of data.

Also, can you provide a reference to a tutorial on how to make use of
the PATH_INFO technique?

Jul 23 '05 #5
Alan J. Flavell <fl*****@ph.gla.ac.uk> wrote:
If the answer is indeed no, then what methods do people use to pass data
when there is a desire to keep the URLs clean? Cookies?


It's a possible mechanism, certainly.


So, what technique would you suggest or use in cases where it would make
sense to keep the URL looking clean?

Or, would you argue that no such case exists?
Jul 23 '05 #6
Eric wrote:
Leif K-Brooks <eu*****@ecritters.biz> wrote:

Eric wrote:
<a href="http://www.aaa.com/randompage.php?name=data">

What I am wondering is if there was a way to do the same thing, but use
the POST Method instead...?

My purpose in doing so is to keep the URLs the user sees clean by not
putting anything in them that they do not need to see.


No, but there are some a couple of things I would do to make your URL
cleaner.

First of all, I would get rid of the ".php" extension. It's really an
implementation detail of how your Web site is built, and looks pretty
ugly to my tastes.

Interesting. I had not considered that before.

Most Web servers have options that would let you use
/randompage instead of /randompage.php if configured properly.

Also, if the data you're passing is really something like a name or ID,
why not make it part of the path instead of putting it in the query
string? PHP puts extra path components in the variable
$_SERVER['PATH_INFO'] for your application to use.

So in the end, your URL would look like:

http://example.com/randompage/data

It could be something like a name or ID, but it could also be just about
any other random piece of data one might see being passed via the GET
Method and, perhaps, multiple pieces of data.

Also, can you provide a reference to a tutorial on how to make use of
the PATH_INFO technique?

Assuming from the above you are using PHP, here is a basic tutorial
(with an odd URL considering its purpose)
http://agachi.name/weblog/archives/2...endly-urls.htm
but this matter is better discussed on c.l.php but some quick comments
for consideration.

Exposing the string query real values in an URL can be fraught. They can
be altered maliciously in transmission. Nobody can prevent this but
contamination can be detected and the request rejected; only valid
values (or substitutes) being actioned. Google then c.l.php

Another reason to rewrite URLs is to obscurate the directory structure,
again better discussed elsewhere.

Another reason is to overcome search engines problems with the "=" in
the query string.

And the list goes on

Louise
Jul 23 '05 #7
boclair <bo*****@boclair.com> wrote:
Assuming from the above you are using PHP, here is a basic tutorial (with
an odd URL considering its purpose)
http://agachi.name/weblog/archives/2...mic-urls-into-
friendly-urls.htm


Thanks for the reference. It looks quite useful and I shall have to
study it more closely.
Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: laredotornado | last post by:
Hi, I'm using PHP 4 and trying to parse through HTML to look for HREF attributes of anchor tags and SRC attributes of IMG tags. Does anyone know of any libraries/freeware to help parse through...
4
by: Nico Grubert | last post by:
Hello, I want to remove all html tags from a string "content" except <a ....>xxx</a>. My script reads like this: ### import re content = re.sub('<((|\n)*)>', '', content)
6
by: Ramon M. Felciano | last post by:
Helo all -- I'm trying to gain a deeper understand for what type of semi-declarative programming can be done through XML and XPath/XSLT. I'm looking at graph processing problems as a testbed for...
8
by: lancevictor | last post by:
I'm learning javascript, and toward that end, I am recreating a page "my way". The original page: http://stenbergcollege.com and the one that I'm creating:...
6
by: Christoph Söllner | last post by:
Hi *, is there a html parser available, which could i.e. extract all links from a given text like that: """ <a href="foo.php?param1=test">BAR<img src="none.gif"></a> <a...
8
by: Kathleen Dollard | last post by:
Hi, Oleg's answer about attribute value templates led me to look back at a different problem, and wonder if someone else had solved it. I want to output an ASP.NET page. Thus I need to output...
4
by: Ali | last post by:
I need a functionality where my clients download Excel files and after they do, I do some processing. Downloading is easily achieved using a anchor or hyperlink tag, but that does not give me the...
4
by: Kevin Phifer | last post by:
Ok, before anyone freaks out, I have a solution I need to create that gathers content from maybe different places. Each one can return a <form> in the html, so its the classic can't have more than...
15
by: Francach | last post by:
Hi, I'm trying to use the Beautiful Soup package to parse through the "bookmarks.html" file which Firefox exports all your bookmarks into. I've been struggling with the documentation trying to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.