form action attribute Value in php [closed] - php

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I am trying to get a form's action attribute in server side php.
I tried getting it through $_POST['action'] and $_REQUEST['action'] but this value is not set.
Please help me.

The action attribute is not sent via a form submission.

Check $_SERVER['REQUEST_METHOD'] instead.

Related

E-goi what is the function name that makes the user 's email validation that will receive the newsletters [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
im using e-goi and i whant to know if possibel what is the function name that makes the user 's email validation that will receive the newsletters.
tks
Maybe this?
http://www.e-goi.com/en/recursos/api/testemailaddress/
Can you explain what are you trying to do?

Program to see data sent throught method post or get in Php [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I need to find a program for see that data are sent a thought the method Post or Get in PHP
without use $_POST and $_GET
You can use $_REQUEST["my_variable"] for php ( server side )
If you want see in browser extension you can use firebug ( client side )
Firebug: how do I see GET parameters?

Load HTML Thank You on Contact Form [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Instead of "Message Sent" alert, I would like to load hidden HTML content. Once the user fills out the required fields, through HTML, a Thank You message/image will appear along with an exclusive Pay Now button. Here's the link http://thebrlab.com/razor-chic-of-atlanta/sign-up.php
You can either do this with javascript inserting the div, set the display to none (display:none), then when the button is clicked, use javascript to change the attribute to display:block.
Without more information, I can't give you a better answer.

Is it possible to do form validation from a separate php script? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
What I'm trying is a php form validation from a separate file.(form.php & validate.php).
Is it possible?
Yes, you just have to include the scripts and you have access to functions inside of them. You really couldn't google this one?
include("validate.php"); //inside form.php

Send vars without using input hidden php [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I wonder if you could also send vars without using hidden input, because input hidden is always readable in the code
You can use $_SESSION or continue using hidden inputs with encrypted name and value, then the user has no clue what they are reading.

Categories