Re: [PHP] Re: Submit Using An Image Form Processing

2011-06-18 Thread Ashley Sheridan
Geoff Lane wrote: >On Saturday, June 18, 2011, Ron Piggott wrote: > >> I am not getting anything. Is there a correct way of passing a >> variable through an image? The value in this above example is the >> auto_increment value of the product. From this I could remove the >> item from the sho

[PHP] Re: Submit Using An Image Form Processing

2011-06-18 Thread Geoff Lane
On Saturday, June 18, 2011, Ron Piggott wrote: > I am not getting anything. Is there a correct way of passing a > variable through an image? The value in this above example is the > auto_increment value of the product. From this I could remove the > item from the shopping cart. An image causes

[PHP] Re: Submit Form Values To Parent

2005-12-02 Thread Matt Monaco
is valid just as with any other link. ""Shaun"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > How can I get the form values submitted from an iframe where the target is > the parent window? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:/

[PHP] Re: Submit Form Values To Parent

2005-12-01 Thread DvDmanDT
Like you do it if the target was the same window? PHP doesn't know which window is the target.. -- // DvDmanDT mail: dvdmandt¤telia.com msn: dvdmandt¤hotmail.com ""Shaun"" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi, > > How can I get the form values submitted from an i

[PHP] Re: Submit button as image

2004-05-12 Thread Justin Patrin
Sam wrote: What do you do with this? Submit.x=22&Submit.y=13 if($_GET['Submit.x'] > 0) ??? Is there some smarter way of dealing with an image as a submit button? input name="Submit" type="image" value="doesNOTseemTOmatter" Thanks Well, it comes through as an image map in most browsers. I've fou

[PHP] Re: SUBMIT

2003-03-07 Thread Foong
OK sorry i miss this post. looking at you code. I guess there are mismatch of opening and closing tags. In HTML double slashes // is not a comment. when you do something like // The tag wont get commented use: to comment a html tag out side php scope. Foong "Diksha Neel" <[EMAIL PROTECTED]>

[PHP] Re: submit button

2003-03-07 Thread Foong
sorry, I really didn't seen any attachment in any of your post. can you paste it in your next post? foong "Diksha Neel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > hi everybody, > > i have a PHP script by name registration.php > in which i have a submit button at the bottom. >

[PHP] Re: submit button

2003-03-07 Thread Foong
can i have a peek on your diki.php? I didn't see any attachment. Foong "Diksha Neel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > hi everybody, > > i have a PHP script by name registration.php > in which i have a submit button at the bottom. > the form in this script is sent to

RE: [PHP] Re: Submit buttons

2003-02-25 Thread Bryan Lipscy
Greg [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 12:22 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Submit buttons I'm horrible at javascript, does anyone have a script that will do this? Thanks again!! "Oliver Witt" <[EMAIL PROTECTED]> wrote in message news:[

[PHP] Re: Submit buttons

2003-02-25 Thread Greg
I'm horrible at javascript, does anyone have a script that will do this? Thanks again!! "Oliver Witt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Greg schrieb: > > > Is there any way that I can have a form submit to different pages depending > > on the submit button that is press

[PHP] Re: Submit buttons

2003-02-25 Thread Oliver Witt
Greg schrieb: > Is there any way that I can have a form submit to different pages depending > on the submit button that is pressed? Thanks! dont use submit buttons, but buttons... (type="button") calling a script that submits the form to whatever page you want it to. Olli -- PHP General Maili

[PHP] Re: Submit Form

2003-01-09 Thread DreamRiver
Steven (cc list), The sticky part is: ---User comes back next day, clicks load For that functionality you will need to remember the user, the last project they were using and the form they were 'on'. How? You can have the user log in to their last saved state (which you will save when they

[PHP] Re: Submit code

2002-07-16 Thread Lee Doolan
here's an excerpt from a script in which I do something like that: $pdArgs= "demo=" . urlencode($argAry['demo']) . "&" . "first_name=" . urlencode($argAry['first_name']) . "&" . "last_name=" . urlencode($argAry['last_name']) . "&" .

[PHP] Re: Submit code

2002-07-16 Thread Kondwani Spike Mkandawire
Algorithmically: //in php 1) create a counter that will keep count of the # of variables that have been set 2) if all your variables have been set spit out the relevant JavaScript that runs the AutoSubmit function... (There are a couple onLine)... ... It can follow the following Ske

[PHP] Re: Submit code

2002-07-16 Thread Martin Thoma
> I am looking for PHP code that will submit (post) a form automaically to a > ANOTHER php page. I do not want to press a submit button. I have found a > class at PHPClasses but it is too complicated for my needs. What is the > simplest way of doing this? What is the theoretical approach? I t

[PHP] Re: submit form problem

2001-08-12 Thread Richard Lynch
> I've a script accepting four different forms depending on the user choice. > Some of the forms have two submit buttons forcking actions accordingly to > the pressed button. > > The problem is: $HTTP_POST_VARS["submit"] is not set if the user press ENTER > instead of clicking the button and the s

[PHP] Re: submit form problem

2001-08-12 Thread Inércia Sensorial
I haven't found a way to disable the Enter key to submit the form, as I believe it does exists, but, found a way so when Enter is pressed works like Tab, moving to the next form field. Here: http://www.faqts.com/knowledge_base/view.phtml/aid/6793/fid/129 Google search used: http://www.go