我有一个名为“变革ApprovalInfo.php”的网页。 其职能如下:
function Row_Rendered() {
// To view properties of field class, use:
//var_dump($this-><FieldName>);
$RecordOwner = $this->RequestUser->CurrentValue;
echo $RecordOwner;
}
账单 所有人拿到我的数据,我需要在另一页进行q问。
我有另一页称为“变革ApprovalEdit.php—— 页: 1
<?php include_once "ChangeApprovalinfo.php" ?>
档案顶部。
改变ApprovalEdit.php的功能是,我需要变换ApprovalInfo所界定的“Record Ownerr”变量。
如果在《改革法》上加上“债务”一词。 我看到了一个错误,说它是一个不为人知的变数。 我的理解是,我需要“使它成为全球性的”或某种此类业务。 我对购买力平价了解甚少,我正在编辑的网页很长而且很复杂。 (至少对我而言)
- What do I need to do? I know that the information I have provided might not be enough to answer the question. I don t know enough to even know exactly what I need to ask. If more information is needed, I will edit and follow up.
档案的过去
ChangeApprovalInfo.php = http://pastebin.com/bSRM1wwN
ChangeApprovalEdit.php = http://pastebin.com/AStG9pqb
EDIT: Changing Row_Rendered to this seems to be more effective. I m having trouble seeing WHERE I can later echo this variable... but I m getting somewhere with this...
function Row_Rendered() {
// To view properties of field class, use:
//var_dump($this-><FieldName>);
$GLOBALS[ RecordOwner ] = $this->RequestUser->CurrentValue;
}