blob: c513c8f71c10e33ae8818bc0d73658b62e81185c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
class Home extends TPage
{
public function button1Clicked($sender,$param)
{
$this->Result1->Text="You have entered: ".$this->HtmlArea1->Text;
}
public function button2Clicked($sender,$param)
{
$this->Result2->Text="You have entered: ".$this->HtmlArea2->Text;
}
public function button3Clicked($sender,$param)
{
$this->Result3->Text="You have entered: ".$this->HtmlArea3->Text;
}
}
|