Hi!
I am getting problem while getting one form hidden value to another form.
Give me suggestion.
Retrieve Hidden field value to another pageRetrive Hiddent field value to another page
Page 1 of 1
5 Replies - 6328 Views - Last Post: 08 December 2009 - 08:55 AM
Replies To: Retrieve Hidden field value to another page
#2
Re: Retrieve Hidden field value to another page
Posted 07 December 2009 - 12:46 AM
Post your code here
#3
Re: Retrieve Hidden field value to another page
Posted 07 December 2009 - 01:12 AM
Johnson-php, on 6 Dec, 2009 - 11:46 PM, said:
Post your code here
The First page: "f1.php"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form name="hdf1" id="hdf1" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input name="ht" id="ht" type="hidden" value="testhidden" />
</form>
</body>
</html>
==============================
the second page: "f2.php"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function hdn()
{
try
{
a = document.hdf1.ht.value;
}catch(err)
{
alert(err.message);
}
alert("new value:" +a);
alert("test");
}
</script>
</head>
<body onload="hdn();">
</body>
</html>
#4
Re: Retrieve Hidden field value to another page
Posted 07 December 2009 - 01:34 AM
check this tutorial about sending and retrieving data from Forms with PHP.
Get & Post Methods: How to & why.
Get & Post Methods: How to & why.
#5
Re: Retrieve Hidden field value to another page
Posted 08 December 2009 - 08:50 AM
That's Javascript and not PHP. I suggest you take a look at the link noorahmad gave you.
#6
Re: Retrieve Hidden field value to another page
Posted 08 December 2009 - 08:55 AM
Moved to Javascript.
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote





|