neilmurray
Technical User
Hi, where can I find info on what $this-> does.
Tried checking th ePHP manual but no Joy.
Thanks,
Neil.
Tried checking th ePHP manual but no Joy.
Thanks,
Neil.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public intLength as integer
Public intHeight as integer
public function Area() as integer
Area=intLength*intHeight
End function
var $Length;
var $Height;
function Area() {
return $this->Length*$this->Height;
}