473,400 Members | 2,163 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,400 software developers and data experts.

PHP: passing hidden variables server side

2
Hi all,

I would like to send a user who lands on page.php to page2.php with some hidden variables (similar to post method).

I assume the header redirect will only pass visible variables (similar to get method).
e.g.
header("location: http://url.com/page2.php?var1&var2");

Is there a way to automate the redirect and pass along variables picked up from page.php to page2.php that are not visible in the redirected url?

is there a different method or PHP function that can accomplish this? Maybe i can create a form wiht post method and have it submit automatically on the server side?

For various reasons, I can't do this on apache, i need to do this in the PHP code.

thanks in advance,
teren
Jun 26 '06 #1
4 42168
Banfa
9,065 Expert Mod 8TB
There are a number of things that you can do, for instance you could

1. Use a Session

Use a session to store the variables you need to pass, in some cases this will add the session id to the url but this is automatic. You have to start the session before and headers are set to the client, i.e. it must be the first thing you do in the script.

2. Use a cookie

Use a cookie to store the variables you want to pass along. Again you must start the cookie before you send and html headers. Of course since the cookie is stored locally an inteligent user may be able to get the data out of it.

3. Just include the page into the current script

If it's a case of the user requests page1.php but you want to return page2.php then you could just include page2.php into page1.php at the relevent point, or if this is not possible create a fragment that can be included into page1.php and page2.php.

4. Use hidden form inputs

I don't think this is a particularly good idea but you could put the data into hidden form input elements and then submit the form using the POST method.



I would probably go with either 1 or 3 personally.
Jun 26 '06 #2
teren
2
thank you for your reply. i didn't explain myself well enough the first time. I am familiar with all those techniques. i don't think those apply here. let me try to explain the need better:

user lands on page.php?id=123 from another domain where i can't control sessions or cookies.

page.php takes the user and validates some information with a MySQL DB, and then sends the user on to page2.php

page2 may be on another domain or perhaps on the same one as page.php, depending on the results of the process on this page. We need to redirect the user programatically on the server directly to page2.php without the user having to hit a submit button, but we do need to also hide the variable being sent. so i can send them to the next page with header(), but then i can't add the variable info hidden. is there another way to do this?

for lack of better description, i am saying it's like having a post method form that is automatically submitted without the user having to click on the submit button. the #4 option above, can that be done on the server with hidden variables?

thanks again in advance,
teren
Jun 26 '06 #3
iam_clint
1,208 Expert 1GB
you could use sessions like he said or you can do it a more difficult way which i personally wouldn't do but you can... use hidden text fields and use a javascript to submit this form on load.
Jul 17 '06 #4
iam_clint
1,208 Expert 1GB
An example for automaticly posting a form
Expand|Select|Wrap|Line Numbers
  1. <script>
  2. function auto() {
  3.   document.myform.submit();
  4. }
  5. </script>
  6. <body onload="auto();">
  7. <form action="page2.php" method="POST" name="myform">
  8. <input type="hidden" value="somevalue" name="you know">
  9. <input type="hidden" value="somevalue" name="what todo here">
  10. <input type="hidden" value="somevalue" name="so do it">
  11. <input type="hidden" value="somevalue" name="ok">
  12. </form>
  13.  
Jul 17 '06 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: byuedwin | last post by:
Hello, I am starting a new website, and I would like to decide ahead of time what functions (in JavaScript) I will need to write on the server side and which ones on the client side. I believe...
8
by: Mike Fellows | last post by:
Ok, im not sure if this is at all possible and if it is how i go about it is beyond me i have a piece of client side code that requires a piece of data from the server side (an ID number in this...
28
by: Skeets | last post by:
i'm passing session and hidden variables between pages. not to mention post values. i'm a little concerned that someone with sufficient knowledge could spoof these vlaues and manipulate the...
7
by: h7qvnk7q001 | last post by:
I'm trying to implement a simple server-side form validation (No Javascript). If the user submits a form with errors, I want to redisplay the same form with the errors highlighted. Once the form...
1
by: Keithb | last post by:
I have some client-side javascript for that I use for dhtml stuff such as hiding div tags based on user menu selections, etc. I need a way to maintain the state of javascript variables across...
1
by: holy moly | last post by:
Hello, the user enters details into a form (values.php) whose action is (insert_values.php), where does the server-side validation code go? (I know other posts on this subject say use...
22
by: K. A. | last post by:
I have two servers at work, 'A' for testing and development, and server 'B' for production. On server A, I wrote a PHP test code to login users then direct them to a personalized page. This is...
2
by: Rajeesh123 | last post by:
I have a dom tree(same kind of treeview in .net). when user clicks on it , I pass the id to a hidden field and update it with ajax. The main page has one if clause to get the condition of hidden...
4
by: vinot85 | last post by:
Is there is any easy way to do the Server side validation in PHP without using the Server side script? Is there is any options to do the Validations as in .NET by using validation controls? There...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have 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...
0
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
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,...

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.