Okay I am new to PHP, well getting it to run. The programming part is fine, it is very similar to python, ruby, etc... so no trouble there. So here is my problem. I made a class, and all it has is a function that writes test to the browser page.
<?php
class Test{
function Test(){}
public function test(){
echo "Test \n";
}
}
?>
and I made a html doc that would just use that script that I did, but I dont think I did it right, so how would I use that in an html doc?
Thanks