Hi I tries the code but it doesnt work, I am using php. I send the variable to another class where i output them to a html form (text boxes)
<form action='datadictedit.php' method="POST" name="form">
<a href="datadictedit.php" onclick="document.form.submit();">EDIT</a>
<input type="hidden" name="masterkey" value='<?php echo $DataName;?>'>
<input type="hidden" name="masterkey2" value='<?php echo $Description; ?>'>
<input type="hidden" name="masterkey3" value='<?php echo $Type; ?>'>
<input type="hidden" name="masterkey4" value='<?php echo $Range; ?>'>
</form>
$dataname = @$POST["masterkey"];
$description= @$POST['masterkey2'];
$type= @$POST["masterkey3"];
$range= @$POST["masterkey4"];
then output them?
any ideas?