summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TWizard/Sample4.php
blob: c731765428ee3f5729e7da881c24b591214fc8c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

class Sample4 extends TPage
{
	public function wizardCompleted($sender,$param)
	{
		$this->Result->Text="Your favorite color is: " . $this->DropDownList1->SelectedValue;
	}
}

?>