Re: [PHP-DB] Urgent help needed

2003-10-21 Thread Karen Resplendo
In the input definition onclick call a javascript function with all your parameters. Might be a missing quote here and there but this is close to ones I use all the time: echo ""; Now here is what is in "yourjavascriptfunctio('$parameter1,$parameter2,$parameter3'): function yourjavascriptfunc

RE: [PHP-DB] Urgent help needed

2003-10-21 Thread Ryan Jameson (USA)
PROTECTED] Subject: Re: [PHP-DB] Urgent help needed Chris Payne wrote: > Basically, aswell as sending the ID, > I need to send the title and path too > and i'm abit confused. > > You could pass the value as "id/title/path" where / is a delimiter, then pull it

Re: [PHP-DB] Urgent help needed

2003-10-21 Thread Rolf Brusletto
Chris - it might take a little work, but I think I have a good solution for ya. I would maybe use the $id as the key, and then use hidden inputs to set the other stuff in a multidimensional array. like so then, on the flip side of the script when you need the data, the array keys are the

Re: [PHP-DB] Urgent help needed

2003-10-21 Thread John W. Holmes
Chris Payne wrote: Basically, aswell as sending the ID, > I need to send the title and path too > and i'm abit confused. You could pass the value as "id/title/path" where / is a delimiter, then pull it apart on the other side. Or, you could format 3 different elements like this: Now, when