i assign a text box value from a php variable and now i need to pass that value to another form, i'm able to receive other text box values in another page but couldn't get the value of the text box which i assigned using php variable...
<form name="form1" action="book.php" method="post">
<input type="text" name ="name" id="name" value="XXX">
<input type="text" name="da" id="da" value='<?php echo $output?>'>
<input type="submit" value="BOOK" name="book" onClick="return validate()">
</form>
in book.php
if(isset($_POST['book']))
{
$da = $_POST['da'];
$name= $_POST['name'];
echo "$name";
here i get the value for name but not for da...