Posted by George
2016-11-06

Hello Tom,
how to replace
<?php echo $hm->Zb('rs:def:f0008'); ?>
with:
<input type='text' name='f0008' value='<?php echo date("j/m/Y - G:i"); ?>' readonly/>

and

<?php echo $hm->Zb('rs:def:f0009'); ?>
with:
<input type='text' name='f0009' value='<?php echo $_GET['sample'] ?>' readonly/>
from my url?
(form/index.php?sample=40)
Posted by Tom
2016-11-07

> <input type='text' name='f0008' value='<?php echo date("j/m/Y - G:i"); ?>' readonly/>

I think you want to display data in a different format?
If so, please read this article
http://www.phpkobo.com/article--m2072

> <input type='text' name='f0009' value='<?php echo $_GET['sample'] ?>' readonly/>

Sorry, I don't understand what you are trying to do. You can't use $_GET here.