473,791 Members | 2,881 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Form Action PUT not sending variables

I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top ;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0; margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;" name="closer"
style="height: 97%">Close</button>
</p>
</form>

<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>

<label class="frmlabel " for="addr"><br> Enter Address:</label><br>
<input class="frmaddr" name="addr" size="50"/></input><br>&nbsp ;<br>
<input type=submit class="frminput " onClick="return tohere() ;"
name="GoTo" value="and go TO Meeting"><br>&n bsp;<br>
<input type=submit class="frminput " onClick="return fromhere() ;"
name="GoFrom" value="or FROM Meeting"><br>&n bsp;<br>
<input type="hidden" name="startaddr ess" size="200" value="">
<input type="hidden" name="endaddres s" size="200" value="">
<input type="hidden" name="meetingad dress" size="200"
value="">
<input type="hidden" name="coordinat esline" size="20"
value="">
&nbsp;<br>
</form>
</td>

None of the variables are reaching geodirect.php

I am at lose on how to go about dealing with this -- may I have
suggestions

Jul 16 '07 #1
17 1926

"ft310" <to*****@fullch annel.netwrote in message
news:11******** **************@ k79g2000hse.goo glegroups.com.. .
>I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top ;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0; margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;" name="closer"
style="height: 97%">Close</button>
</p>
</form>

<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>

<label class="frmlabel " for="addr"><br> Enter Address:</label><br>
<input class="frmaddr" name="addr" size="50"/></input><br>&nbsp ;<br>
<input type=submit class="frminput " onClick="return tohere() ;"
name="GoTo" value="and go TO Meeting"><br>&n bsp;<br>
<input type=submit class="frminput " onClick="return fromhere() ;"
name="GoFrom" value="or FROM Meeting"><br>&n bsp;<br>
<input type="hidden" name="startaddr ess" size="200" value="">
<input type="hidden" name="endaddres s" size="200" value="">
<input type="hidden" name="meetingad dress" size="200"
value="">
<input type="hidden" name="coordinat esline" size="20"
value="">
&nbsp;<br>
</form>
</td>

None of the variables are reaching geodirect.php

I am at lose on how to go about dealing with this -- may I have
suggestions
I am at a loss too. Where is the accompanying script? What are those
onClick (sic) handlers calling?
Jul 16 '07 #2
Rik
On Tue, 17 Jul 2007 00:07:44 +0200, ft310 <to*****@fullch annel.netwrote:
I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top ;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0; margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;" name="closer"
style="height: 97%">Close</button>
</p>
</form>

<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>
Euhm, a self closing form tag? Try without the /

--
Rik Wasmus
Jul 16 '07 #3
On Jul 16, 6:18 pm, Rik <luiheidsgoe... @hotmail.comwro te:
On Tue, 17 Jul 2007 00:07:44 +0200, ft310 <tooh...@fullch annel.netwrote:
I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top ;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0; margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;" name="closer"
style="height: 97%">Close</button>
</p>
</form>
<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>

Euhm, a self closing form tag? Try without the /

--
Rik Wasmus
Rik, thanks -- that was definitely not necessary -- I took it out and
there was no change.

Jul 16 '07 #4

"ft310" <to*****@fullch annel.netwrote in message
news:11******** **************@ d55g2000hsg.goo glegroups.com.. .
On Jul 16, 6:14 pm, "David Mark" <dm...@cinsoft. netwrote:
>"ft310" <tooh...@fullch annel.netwrote in message

news:11******* *************** @k79g2000hse.go oglegroups.com. ..
>I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top ;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0; margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;" name="closer"
style="height: 97%">Close</button>
</p>
</form>
<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>
<label class="frmlabel " for="addr"><br> Enter Address:</label><br>
<input class="frmaddr" name="addr" size="50"/></input><br>&nbsp ;<br>
<input type=submit class="frminput " onClick="return tohere() ;"
name="GoTo" value="and go TO Meeting"><br>&n bsp;<br>
<input type=submit class="frminput " onClick="return fromhere() ;"
name="GoFrom" value="or FROM Meeting"><br>&n bsp;<br>
<input type="hidden" name="startaddr ess" size="200" value="">
<input type="hidden" name="endaddres s" size="200" value="">
<input type="hidden" name="meetingad dress" size="200"
value="">
<input type="hidden" name="coordinat esline" size="20"
value="">
&nbsp;<br>
</form>
</td>
None of the variables are reaching geodirect.php
I am at loss on how to go about dealing with this -- may I have
suggestions

I am at a loss too. Where is the accompanying script? What are those
onClick (sic) handlers calling?


Here is the scripts -- If you tell me I have a script error at this
point I will be sad, very say.
You don't know if you have a script error at this point? Anyway, another
poster spotted a flaw in your HTML. You should have validated the HTML
first and if it still didn't work at that point, you should have tested it
without the script (which you should do anyway.) And when posting HTML, you
should include all functions referenced in inline event handlers, otherwise
it is impossible to test it.
Jul 16 '07 #5
On Jul 16, 6:35 pm, "David Mark" <dm...@cinsoft. netwrote:
"ft310" <tooh...@fullch annel.netwrote in message

news:11******** **************@ d55g2000hsg.goo glegroups.com.. .
On Jul 16, 6:14 pm, "David Mark" <dm...@cinsoft. netwrote:
"ft310" <tooh...@fullch annel.netwrote in message
>news:11******* *************** @k79g2000hse.go oglegroups.com. ..
I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top ;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0; margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;" name="closer"
style="height: 97%">Close</button>
</p>
</form>
<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>
<label class="frmlabel " for="addr"><br> Enter Address:</label><br>
<input class="frmaddr" name="addr" size="50"/></input><br>&nbsp ;<br>
<input type=submit class="frminput " onClick="return tohere() ;"
name="GoTo" value="and go TO Meeting"><br>&n bsp;<br>
<input type=submit class="frminput " onClick="return fromhere() ;"
name="GoFrom" value="or FROM Meeting"><br>&n bsp;<br>
<input type="hidden" name="startaddr ess" size="200" value="">
<input type="hidden" name="endaddres s" size="200" value="">
<input type="hidden" name="meetingad dress" size="200"
value="">
<input type="hidden" name="coordinat esline" size="20"
value="">
&nbsp;<br>
</form>
</td>
None of the variables are reaching geodirect.php
I am at loss on how to go about dealing with this -- may I have
suggestions
I am at a loss too. Where is the accompanying script? What are those
onClick (sic) handlers calling?
Here is the scripts -- If you tell me I have a script error at this
point I will be sad, very say.

You don't know if you have a script error at this point? Anyway, another
poster spotted a flaw in your HTML. You should have validated the HTML
first and if it still didn't work at that point, you should have tested it
without the script (which you should do anyway.) And when posting HTML, you
should include all functions referenced in inline event handlers, otherwise
it is impossible to test it.

David, thank you very much for your valued insights into the current
state of software evolution.

Jul 16 '07 #6

"ft310" <to*****@fullch annel.netwrote in message
news:11******** **************@ k79g2000hse.goo glegroups.com.. .
On Jul 16, 6:18 pm, Rik <luiheidsgoe... @hotmail.comwro te:
>On Tue, 17 Jul 2007 00:07:44 +0200, ft310 <tooh...@fullch annel.net>
wrote:
I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top
;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0; margin-bottom:
0">
<button class="frmclose " onClick="retrea t() ;"
name="closer"
style="height: 97%">Close</button>
</p>
</form>
<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>

Euhm, a self closing form tag? Try without the /

--
Rik Wasmus

Rik, thanks -- that was definitely not necessary -- I took it out and
there was no change.
Of course it was necessary. If it still fails then something else is wrong
too. Perhaps you should stick to learning HTML before trying to add
JavaScript to your creation.
Jul 16 '07 #7

"ft310" <to*****@fullch annel.netwrote in message
news:11******** **************@ w3g2000hsg.goog legroups.com...
On Jul 16, 6:35 pm, "David Mark" <dm...@cinsoft. netwrote:
>"ft310" <tooh...@fullch annel.netwrote in message

news:11******* *************** @d55g2000hsg.go oglegroups.com. ..
On Jul 16, 6:14 pm, "David Mark" <dm...@cinsoft. netwrote:
"ft310" <tooh...@fullch annel.netwrote in message
>>news:11****** *************** *@k79g2000hse.g ooglegroups.com ...
>I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top
;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0; margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;" name="closer"
style="height: 97%">Close</button>
</p>
</form>
<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>
<label class="frmlabel " for="addr"><br> Enter Address:</label><br>
<input class="frmaddr" name="addr" size="50"/></input><br>&nbsp ;<br>
<input type=submit class="frminput " onClick="return tohere() ;"
name="GoTo" value="and go TO Meeting"><br>&n bsp;<br>
<input type=submit class="frminput " onClick="return fromhere() ;"
name="GoFrom" value="or FROM Meeting"><br>&n bsp;<br>
<input type="hidden" name="startaddr ess" size="200" value="">
<input type="hidden" name="endaddres s" size="200" value="">
<input type="hidden" name="meetingad dress" size="200"
value="">
<input type="hidden" name="coordinat esline" size="20"
value="">
&nbsp;<br>
</form>
</td>
None of the variables are reaching geodirect.php
I am at loss on how to go about dealing with this -- may I have
suggestions
>I am at a loss too. Where is the accompanying script? What are those
onClick (sic) handlers calling?
Here is the scripts -- If you tell me I have a script error at this
point I will be sad, very say.

You don't know if you have a script error at this point? Anyway, another
poster spotted a flaw in your HTML. You should have validated the HTML
first and if it still didn't work at that point, you should have tested
it
without the script (which you should do anyway.) And when posting HTML,
you
should include all functions referenced in inline event handlers,
otherwise
it is impossible to test it.


David, thank you very much for your valued insights into the current
state of software evolution.
Google posting--so easy a caveman can do it.
Jul 16 '07 #8
Rik
On Tue, 17 Jul 2007 00:30:29 +0200, ft310 <to*****@fullch annel.netwrote:
On Jul 16, 6:18 pm, Rik <luiheidsgoe... @hotmail.comwro te:
>On Tue, 17 Jul 2007 00:07:44 +0200, ft310 <tooh...@fullch annel.net
wrote:
I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top
;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0;
margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;"
name="closer "
style="height: 97%">Close</button>
</p>
</form>
<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>

Euhm, a self closing form tag? Try without the /

Rik, thanks -- that was definitely not necessary -- I took it out and
there was no change.
It was neccessary, it was invalid HTML. Now, if things still not work,
consider 2 options to further our search:

1. Use FireBug in Mozilla (or other javascript tools) to check the flow
after the onclick events.

2. If that doesn't work, put it up on a location reachable for us and give
us the URL. I'm not in the habit of setting up other peoples webpages
myself to give them free advice about their problems. I'm glad to help
out, but make it easy for the people who are willing to spend time on you.

--
Rik Wasmus
Jul 17 '07 #9
On Jul 16, 9:41 pm, Rik <luiheidsgoe... @hotmail.comwro te:
On Tue, 17 Jul 2007 00:30:29 +0200, ft310 <tooh...@fullch annel.netwrote:
On Jul 16, 6:18 pm, Rik <luiheidsgoe... @hotmail.comwro te:
On Tue, 17 Jul 2007 00:07:44 +0200, ft310 <tooh...@fullch annel.net>
wrote:
I have a form
<td ID="but" width="20%" style="height: 30px; vertical-align: top
;">
<form class="frmform" name="close01" action="index.h tm"/>
<p style="text-align: center; margin-top: 0;
margin-bottom: 0">
<button class="frmclose " onClick="retrea t() ;"
name="closer"
style="height: 97%">Close</button>
</p>
</form>
<form class="frmform"
name="buttons"
target="_blank"
method="POST"
action="geodire ct.php"/>
Euhm, a self closing form tag? Try without the /
Rik, thanks -- that was definitely not necessary -- I took it out and
there was no change.

It was neccessary, it was invalid HTML. Now, if things still not work,
consider 2 options to further our search:

1. Use FireBug in Mozilla (or other javascript tools) to check the flow
after the onclick events.

2. If that doesn't work, put it up on a location reachable for us and give
us the URL. I'm not in the habit of setting up other peoples webpages
myself to give them free advice about their problems. I'm glad to help
out, but make it easy for the people who are willing to spend time on you.

--
Rik Wasmus
Rik, I appreciate your input and I think agree with you. I've had this
issue for some time now and was looking for an approach as everything
I could think of was yielding nothing.

Your remarks were constructive and necessary -- the /should not have
been there -- I had discredited it but one can never know.

In all cases though, this discussion reach a new low real quick and I
am looking for other more civil avenues.

I've been doing this for over 47 years; We all have baggage; I'm just
not in the mood to haul someone elses.

Again thanks and Good Luck to you.

Frank

Jul 17 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3334
by: Shaun Demellweek | last post by:
When you use a form to insert data into a MySQL database, how can you set it up so that the fields are not sent via the address bar. For example: page1.php ___________ <form action="page2.php"> <input type="text" value="whatever"> <input type="submit" value="Send">
3
29126
by: Steven K | last post by:
Hello, I am using an asp page (upload.asp) to gather information and to upload files to the web server using SoftArtisans SAUpload Tool. In the first page (upload.asp), I have a form for gathering info with the following: <form method="POST" action="upload_ok.asp" name="frmUpload" enctype="multipart/form-data"> <input type="hidden" name="cmdSearch" value="SearchValue"> <input type="hidden" name="cmdName" value="NameValue">
11
1811
by: r0adhog | last post by:
First off wanted to that all that replied to my previous questions, you were much help. Had a couple of general questions. Why has everyone suggested not using VB Script on the Client Side? Secondly, I have decided to do my validation on the processing page. If a field on the form does not meet the validation rules, I am able to redirect back to the sending page. How do I do this so that the sending
2
1461
by: John | last post by:
Hi all, After one of my user controls does either a server.transfer or response.redirect, the action method in a my resulting html form is being set and any request variables changed at the client are not being reflected upon posting. How can I get rid of this? Can I somehow programmtically clear the action method so by the time the html reaches the client, it's clear? Please help - quite urgent.
7
6999
by: h7qvnk7q001 | last post by:
I'm trying to implement a simple server-side form validation (No Javascript). If the user submits a form with errors, I want to redisplay the same form with the errors highlighted. Once the form is correct I need to submit to another page that uses the form data. I first tried making the form submit action= field point to the same file. When the form was correct, I tried loading the next page by using <META http-equiv refresh>. But...
4
2261
by: Cerebral Believer | last post by:
Hi I need help! Forgive me I am a PHP newbie. I have a small script that enables me to send a form from an HTML page. I want to use the HTML formatted form because the design of my website is complex, and I don't want to have to mess around with formatting a page using HTML within php. So basically the "action" of the HTML page sends the form to "ProcReg.php". This is the code: <?php /* Script name: ProcReg.php
0
1616
by: bp_jobemail | last post by:
I'm trying to use PHP to wrap the output of an HTML form before it goes into a precompiled C cgi script. Essentially, the company that I work for uses a purchased precompiled c program for their shopping cart. This C program stores order information, and when an order is processed and approved, records the transaction and sends a template email to the customer with an invoice describing their purchase. Since we're going to be selling a...
1
2194
by: Taras_96 | last post by:
Hi everyone, I've downloaded the PHP code at http://www.inventory-management.org/ and am currently in the process of trying to get the code up and running. I am running PHP version 5.1.6.6, so I needed to change the function named fputcsv to f_put_csv. However, when trying to login to the page (after setting up the database), I find that the $_POST array is empty?! I found this by putting the line var_dump($_POST) at the top of the...
7
3340
by: bleachie | last post by:
Hey, I just need some help, my form seems to not send me all of the 'guestNames' and 'guestEmails' forms. i use this function to add more guestnames and guestemail fields based on the number of guests added. form.php function createGuestNameAndEmailElements() {
0
9669
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10426
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9993
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9029
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7537
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6776
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5430
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5558
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2913
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.