passing vars

T

Terry A. Haimann

I want to pass a variable from one page(in javascript) to a second page(in
php,) what is the syntax in both lanuages to do such?

Thx in advance, Terry
 
F

Fred Serry

Terry A. Haimann said:
I want to pass a variable from one page(in javascript) to a second page(in
php,) what is the syntax in both lanuages to do such?

Thx in advance, Terry

Hi,

Put the values in hidden inputs on a form and post it to your php page.
The posted inputs will be available in php as variables.

<form action="myFile.php" method="post" name="myForm">
<input type="hidden" name="myVar" value="">
</form>
<script type="text/javascript">
document.forms["myForm"].elements["myVar"].value="Hello world"
document.forms["myForm"].submit()
<script>

------------------------

myFile.php:

echo "Received value: ".$myVar ;


hth Fred
 
T

Terry A. Haimann

Thx, I had scoured the book stores, but hadn't figured it out. Last night
I was back at b&n("to feed my mocha habit") when I came across Query
Strings. I added the code and they seem to work.

Terry A. Haimann said:
I want to pass a variable from one page(in javascript) to a second page(in
php,) what is the syntax in both lanuages to do such?

Thx in advance, Terry

Hi,

Put the values in hidden inputs on a form and post it to your php page.
The posted inputs will be available in php as variables.

<form action="myFile.php" method="post" name="myForm">
<input type="hidden" name="myVar" value="">
</form>
<script type="text/javascript">
document.forms["myForm"].elements["myVar"].value="Hello world"
document.forms["myForm"].submit()
<script>

------------------------

myFile.php:

echo "Received value: ".$myVar ;


hth Fred
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,085
Messages
2,570,597
Members
47,219
Latest member
Geraldine7

Latest Threads

Top