最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - Submit form with action attribute hidden - Stack Overflow

programmeradmin1浏览0评论

People

I want to know how to submit form without action attribute shown. Like this

<form action="someact.php" method="post">
...
</form>

Some suggest to use $_PHP['SELF'], but I want my form to be processed using another php file like separating UI part and process part so that anyone can't see my process file ?

I want like this

<form method="post">
...
</form>

But it processed to the file I want.

Help please ?

People

I want to know how to submit form without action attribute shown. Like this

<form action="someact.php" method="post">
...
</form>

Some suggest to use $_PHP['SELF'], but I want my form to be processed using another php file like separating UI part and process part so that anyone can't see my process file ?

I want like this

<form method="post">
...
</form>

But it processed to the file I want.

Help please ?

Share Improve this question edited Oct 25, 2011 at 10:55 CodeCaster 152k24 gold badges233 silver badges286 bronze badges asked Oct 25, 2011 at 10:52 GabrielGabriel 592 gold badges2 silver badges10 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 5

Firstly, I don't quite understand why you would want this. The whole point of the action attribute is to tell the browser where to send the request, and "hiding" it achieves nothing - any half-way petent hacker (or even less than half-way) can still find the information you are hiding, no matter what you do.

Having said that, you could do something like this:

<form id="hidden_action_form" method="post">
  <!-- ... -->
</form>
<script type="text/javascript">
  document.getElementById('hidden_action_form').action = 'someact.php';
</script>

Why on earth would you need a "hidden" process file? That's impossible: the browser has to know where the request should be sent.

If you explain the problem you're having in the first place, and not the problem that arose from your solition to that problem, other people might be able to help you.

I get the impression that you mix up two things. The PHP-file is only on your server and will not be sent over to the browser. The server (normally apache httpd) processes the file and generates HTML code from it. This code is then sent over to the browser.

When you have a form you MUST have an action associated because as CodeCaster pointed out: The browser needs to know where to send the data. It's like a hyper link without setting the href-Attribute. Nothing can ever happen because the browser does not know what to do.

You can't do that. A form must always have an action attribute. Noone can see the contents of the file that is going to process the form data (if this is your problem).

You won't be able to hide that without javascript. Even javascript won't hide it, but can post the data to another file while the user gets directed to the (public) file defined in the action of the form.

You can use an ajax post() call to POST data to another file. See the link provided to do this with jQuery and make sure that ajax sends the post first and then redirects/loads the user-content.

Notice though that if a client has javascript disabled, the whole POST will not be executed. Also if someone takes a look into your js, one can see the hidden filename there too, unless you password-protect the js file.

发布评论

评论列表(0)

  1. 暂无评论