I know what you're trying to do you just don't quite know how to say
it...

I use something like:

if ($_GET['somevar'] AND $_GET['something_else'])
{
  do_something($_GET['somevar'], $_GET['something_else']);
}
else
{
  output_error_message();
}

-Dan
On Sat, 2003-09-06 at 13:19, Robin Kopetzky wrote:
> Good morning!
> 
> I would like to call a function from a <FORM>'s ACTION attribute. This is
> what I'm trying to do:
> 
> <FORM
> ACTION="www.example.com/PHP_FILENAME/function_name?parameter1=x&parameter2=y
> " etc...>
> 
> I can include the PHP_FILENAME but passing parameters to the function I
> can't figure out how to do. Any help would be appreciated.
> 
> Robin 'Sparky' Kopetzky
> Black Mesa Computers/Internet Service
> Grants, NM 87020

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

Reply via email to