This is a code snippet for the page i am getting the variable $title from
$title = $this->row->title;
// at this point in the script if i echo $title the correct value is stored.
?>
<form name="passvalue" action="myscript.php" method="POST">
<input type="hidden" name="title" value="<?php echo $title;?>">
</form>
This is a code snippet from myscript.php
$title = $_POST["title"];
echo $title;
When the script is executed the value doesn't seem to get passed as the echo command prints nothing
so i assume that title is either not getting passed or retrieved
any help would be appreciated
thank you.