How to “globalize” PHP variables?
问题 I have a page named ChangeApprovalInfo.php - It has a function called Row_Rendered as follows; function Row_Rendered() { // To view properties of field class, use: //var_dump($this-><FieldName>); $RecordOwner = $this->RequestUser->CurrentValue; echo $RecordOwner; } Echoing $RecordOwner gets me the data I will need for a sql query on another page.... I have another page called ChangeApprovalEdit.php - This page has <?php include_once "ChangeApprovalinfo.php" ?> at the top of the file.