Hello

What you are asking isn't possible that way. 
You have to write a controller script that calls the appropriate functions 
on your object.
Example:
controller.php  is the controller script

A link on your page:
<a href="controller.php?action=someAction">Some Action</a>

In controller.php you do something like:
<?php
        if(isset($_POST['action']))
        {
                switch $_POST['action']
                {
                        case 'someAction':
                                //Do what ever you need to
                                break;
                        ...
                }
        }
        .... 
?>

You might also want to look into url rewriting for building searchengine 
friendly urls.

Regards
Stefan Langer


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to