This topic is locked

This is what I would like to do

5/10/2007 10:29:10 PM
PHPRunner General questions
K
kragon8331 author

OKay what I would like to do is this

On The edit page have a text entry box for a text entry but a field that populates previous entries into this box from other edits
John wrote:

Edited front page

Bob wrote:

Checked the front page
Then we have the text entry field.
I'm using PHPrunner to setup a custom support ticket system I have everything else working like I want just need the entries to keep logs entered by the users and a way of displaying them.
This product is awesome I just need to understand how to make this work I figure it has something to do with a master table and slave table

J
Jane 5/11/2007

Hi,
to add new lines to another field use Before record updated event on the Events tab.

Here is a sample code:

//add value of TextField to the HistoryField

$values["HistoryField"]= $values["HistoryField"]."
John wrote:
".$values["TextField"];



where TextField and HistoryField are your actual field names.