Hi I have use codecharge to generate page
In the show method, it display the following field
$this->project_name->Show();
$this->group_desc->Show();
$this->priority->Show();
$this->lastname->Show();
$this->firstname->Show();
$this->title->Show();
$this->ic->Show();
$this->mobileph->Show();
$this->workph->Show();
$this->workext->Show();
$this->telnet->Show();
$this->fax->Show();
$this->otherph->Show();
$this->email1->Show();
$Tpl->block_path = $ParentPath . "/" . $GridBlock;
$Tpl->parse("Row", true);
I wonder how could I compare the project_name with a variable in OOD and overwrite the current value of project_name
I know I can do this without OO design.
if($project_name<> something)
{
$project_name = $project_name . "something else";
}
For OO can I assign this->mobileph to a variable