Can anyone tell me if it is possible to call a function from a php form (which use html),
where the function is included in a class in another php file..
<?php
echo "<pre><form method=\"post\" action=\="what do I write here to acces function test()">";
echo "<input type="text" name="tekst">";
echo"<input type="submit" value="send">";
</form>
?>
<?php
function test(){
echo $tekst;
}
?>
Regards Jeni