RE: [PHP] calling functions in classes using text and graphic links

2003-06-24 Thread SLanger
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: Some Action In controller.php you do something like: You might also want to loo

RE: [PHP] calling functions in classes using text and graphic links

2003-06-24 Thread Daniel Rychlik
[mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2003 12:20 PM To: Daniel Rychlik; [EMAIL PROTECTED] Subject: Re: [PHP] calling functions in classes using text and graphic links I am not sure what you mean but if you are trying to call functions that exist within your class you need to do something

Re: [PHP] calling functions in classes using text and graphic links

2003-06-24 Thread Chris Sherwood
I am not sure what you mean but if you are trying to call functions that exist within your class you need to do something like the following $fg = new YourClass.class.php; $fg->yourfunctionname($arguements); - Original Message - From: "Daniel Rychlik" <[EMAIL PROTECTED]> To: <[EMAIL PROT