This topic is locked

Echo data entry on add page

1/25/2007 10:07:38 AM
PHPRunner General questions
J
JZint author

I have a inventory detail page where I enter items that I receive. Is it possible to echo the data entry of these items as a session and show them on the add page line by line as they are entered.

Alexey admin 1/25/2007

Hi,
sure, just output $valuesarray in Before record added event.

Here is the sample code:

echo "Field1:";

echo $values["Field1"];

echo "
";
echo "Field2:";

echo $values["Field2"];

echo "
";

...