Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > This "FORM" did not work very well

Reply
Thread Tools

This "FORM" did not work very well

 
 
Raymond SCHMIT
Guest
Posts: n/a
 
      02-21-2008
Hello everybody,
On an outing site, there is a FORM used to ask to receive a
login/password for accessing to the "co-voiturage" (car-sharing) part
of the site.
After entering data in the form's zones, clicking the "Envoi" button
will sent transparently a mail containing the request with all the
form's zones in the mail. (two people saying that)

Using my pc, i got only an opened mail ready to be sent, but with only
the mail-adress filled. If i sent this mail, i will sent an empty mail
without any subject. So, this is not "tranparent" and the mail is not
filled with the usefull values from the filled FORM.

How is that possible that the FORM work for 2 persons, and not for me
?
Hereafter is an extract of the html page(i have changed the
mail-adress for "not sending mail to the webmaster )
(Say me if you need the complete html page.)


<FORM ACTION="private.php?do=newpm&u=" METHOD=POST name=forme
enctype="text/plain">
<P><FONT FACE="Comic Sans MS"><INPUT TYPE=text NAME=Nom
VALUE="Acc&egrave;s au co-voiturage" SIZE=25></FONT></P>

<P><FONT FACE="Comic Sans MS">Nom
<INPUT TYPE=text NAME=Nom VALUE="" SIZE=30></FONT></P>

<P><FONT FACE="Comic Sans MS">Pr&eacute;nom
<INPUT TYPE=text NAME=Prenom VALUE="" SIZE=30></FONT></P>

<P><FONT FACE="Comic Sans MS">E_mail
<INPUT TYPE=text NAME=email VALUE="" SIZE=50></FONT></P>

<P><FONT FACE="Comic Sans MS">Ville
<INPUT TYPE=text NAME=ville VALUE="" SIZE=30></FONT></P>

<DL>
<DD><CENTER><INPUT TYPE=button NAME=Envoi VALUE="Envoi"
onclick="verif();">
<INPUT TYPE=reset VALUE="Effacer"></CENTER></DD>
</DL>

</FORM>
 
Reply With Quote
 
 
 
 
rf
Guest
Posts: n/a
 
      02-21-2008

"Raymond SCHMIT" <> wrote in message
news:...
> Hello everybody,
> On an outing site, there is a FORM used to ask to receive a
> login/password for accessing to the "co-voiturage" (car-sharing) part
> of the site.


> <FORM ACTION="private.php?do=newpm&u=" METHOD=POST name=forme
> enctype="text/plain">


mailto: is broken.

Apart from your problem, what about somebody who uses, say, gmail, or
somebody in a public library. In both cases there is no email client for
mailto: to launch.

Use a server side process.

--
Richard.


 
Reply With Quote
 
 
 
 
Raymond SCHMIT
Guest
Posts: n/a
 
      02-22-2008
On Thu, 21 Feb 2008 23:44:59 GMT, "rf" <> wrote:

>
>"Raymond SCHMIT" <> wrote in message
>news:...
>> Hello everybody,
>> On an outing site, there is a FORM used to ask to receive a
>> login/password for accessing to the "co-voiturage" (car-sharing) part
>> of the site.

>
>> <FORM ACTION="private.php?do=newpm&u=" METHOD=POST name=forme
>> enctype="text/plain">

>
>mailto: is broken.

Thanks for answering. but...
I don't understant this sentence.
>
>Apart from your problem, what about somebody who uses, say, gmail, or
>somebody in a public library. In both cases there is no email client for
>mailto: to launch.

Correct !
>
>Use a server side process.

This is what i tried to convince the webmaster to do this way- but he
say: It works correctly for me and for another people, therefore you
must have a problem with your pc....grrr....

I remberred that i used in the past <FORM
ACTION="http://home.scarlet.be/cgi-bin/FormMail.pl" METHOD=POST>
but .....the webmaster doenot like perl and is convinced that his
method should work for everybody...

The question is : Why this construction works with this "another
people" and not with me ?




 
Reply With Quote
 
rf
Guest
Posts: n/a
 
      02-22-2008

"Raymond SCHMIT" <> wrote in message
news:...
> On Thu, 21 Feb 2008 23:44:59 GMT, "rf" <> wrote:
>
>>
>>"Raymond SCHMIT" <> wrote in message
>>news:...
>>> Hello everybody,
>>> On an outing site, there is a FORM used to ask to receive a
>>> login/password for accessing to the "co-voiturage" (car-sharing) part
>>> of the site.

>>
>>> <FORM ACTION="private.php?do=newpm&u=" METHOD=POST name=forme
>>> enctype="text/plain">

>>
>>mailto: is broken.


> Thanks for answering. but...
> I don't understant this sentence.


action="mailto:... is broken. It does not work reliably. It may work
sometimes but it does not work every time. Even if it does appear to work
for your viewer it may not do what you think it does, as you have found. Not
working 100% of the time is termed broken.

>>Apart from your problem, what about somebody who uses, say, gmail, or
>>somebody in a public library. In both cases there is no email client for
>>mailto: to launch.

> Correct !


Ah, I'm glad you agree

>>Use a server side process.


> This is what i tried to convince the webmaster to do this way- but he
> say: It works correctly for me and for another people, therefore you
> must have a problem with your pc....grrr....


So, politely ask said "webmaster", and I emphasise the quotation marks, to
start his/her own thread here extoling the virtues of mailto:. Said
webmaster will be soundly denounced. Just might be an educational experience
for the "webmaster".

> I remberred that i used in the past <FORM
> ACTION="http://home.scarlet.be/cgi-bin/FormMail.pl" METHOD=POST>


Yes, that is how it is done, but please to not use Matts formail stuff. It
is riddled with security problems (that is it will be used to send spam from
your server). Build your own server side process. It is only about twelve
lines of PHP. Ask over at comp.lang.php or simply visit the PHP manual where
an example is provided.

> but .....the webmaster doenot like perl and is convinced that his
> method should work for everybody...


A webmaster who doesn't like Perl? That I can handle but the implication is
that the webmaster does not like server side stuff. This is an oxymoron
these days.

Tell this so called webmaster that the *ONLY* reliable way, for every
viewer, is to do this server side.

> The question is : Why this construction works with this "another
> people" and not with me ?


Your browser is not connected correctly to your email client. The browser
does not pass all the required info. The email client does not accept all
the required info. Any number of things. This is why mailto: is broken. Just
like it is broken for those gmail and library people.

And remember, you will never get a complaint from those who fill in your
"form" and get no response. They have already gone to your opposition.

--
Richard.


 
Reply With Quote
 
Chaddy2222
Guest
Posts: n/a
 
      02-22-2008
On Feb 22, 8:47*pm, "rf" <r...@invalid.com> wrote:
> "Raymond SCHMIT" <Raymond.Sch...@pircarre.be> wrote in message
>
> news:...
>
>
>
>
>
> > On Thu, 21 Feb 2008 23:44:59 GMT, "rf" <r...@invalid.com> wrote:

>
> >>"Raymond SCHMIT" <Raymond.Sch...@pircarre.be> wrote in message
> >>news:...
> >>> Hello everybody,
> >>> On an outing site, there is a FORM used to ask to receive a
> >>> login/password for accessing to the "co-voiturage" (car-sharing) part
> >>> of the site.

>
> >>> <FORM ACTION="mailto:i...@brol.be" METHOD=POST name=forme
> >>> enctype="text/plain">

>
> >>mailto: is broken.

> > Thanks for answering. but...
> > I don't understant this sentence.

>
> action="mailto:... is broken. It does not work reliably. It may work
> sometimes but it does not work every time. Even if it does appear to work
> for your viewer it may not do what you think it does, as you have found. Not
> working 100% of the time is termed broken.
>
> >>Apart from your problem, what about somebody who uses, say, gmail, or
> >>somebody in a public library. In both cases there is no email client for
> >>mailto: to launch.

> > Correct !

>
> Ah, I'm glad you agree
>
> >>Use a server side process.

> > This is what i tried to convince the webmaster to do this way- but he
> > say: It works correctly for me and for another people, therefore you
> > must have a problem with your pc....grrr....

>
> So, politely ask said "webmaster", and I emphasise the quotation marks, to
> start his/her own thread here extoling the virtues of mailto:. Said
> webmaster will be soundly denounced. Just might be an educational experience
> for the "webmaster".
>
> > I remberred that i used in the past <FORM
> > ACTION="http://home.scarlet.be/cgi-bin/FormMail.pl" METHOD=POST>

>
> Yes, that is how it is done, but please to not use Matts formail stuff. It
> is riddled with security problems (that is it will be used to send spam from
> your server). Build your own server side process. It is only about twelve
> lines of PHP. Ask over at comp.lang.php or simply visit the PHP manual where
> an example is provided.
>
> > but .....the webmaster doenot like perl and is convinced that his
> > method should work for everybody...

>
> A webmaster who doesn't like Perl? That I can handle but the implication is
> that the webmaster does not like server side stuff. This is an oxymoron
> these days.
>
> Tell this so called webmaster that the *ONLY* reliable way, for every
> viewer, is to do this server side.
>
> > The question is : Why this construction works with this "another
> > people" and not with me ?

>
> Your browser is not connected correctly to your email client. The browser
> does not pass all the required info. The email client does not accept all
> the required info. Any number of things. This is why mailto: is broken. Just
> like it is broken for those gmail and library people.
>
> And remember, you will never get a complaint from those who fill in your
> "form" and get no response. They have already gone to your opposition.
>

Yeah, what he said +.
If you are going to use a mailto link you should use a form to send a
request with that same message (with some kind of server side script )
as a back-up.
--
Regards Chad. http://freewebdesignonline.org
 
Reply With Quote
 
Raymond SCHMIT
Guest
Posts: n/a
 
      02-22-2008
On Fri, 22 Feb 2008 07:53:19 -0800 (PST), Chaddy2222
<spamlovermailbox-> wrote:

>On Feb 22, 8:47*pm, "rf" <r...@invalid.com> wrote:
>> "Raymond SCHMIT" <Raymond.Sch...@pircarre.be> wrote in message
>>
>> news:...
>>
>>
>>
>>
>>
>> > On Thu, 21 Feb 2008 23:44:59 GMT, "rf" <r...@invalid.com> wrote:

>>
>> >>"Raymond SCHMIT" <Raymond.Sch...@pircarre.be> wrote in message
>> >>news:...
>> >>> Hello everybody,
>> >>> On an outing site, there is a FORM used to ask to receive a
>> >>> login/password for accessing to the "co-voiturage" (car-sharing) part
>> >>> of the site.

>>
>> >>> <FORM ACTION="mailto:i...@brol.be" METHOD=POST name=forme
>> >>> enctype="text/plain">

>>
>> >>mailto: is broken.
>> > Thanks for answering. but...
>> > I don't understant this sentence.

>>
>> action="mailto:... is broken. It does not work reliably. It may work
>> sometimes but it does not work every time. Even if it does appear to work
>> for your viewer it may not do what you think it does, as you have found. Not
>> working 100% of the time is termed broken.
>>
>> >>Apart from your problem, what about somebody who uses, say, gmail, or
>> >>somebody in a public library. In both cases there is no email client for
>> >>mailto: to launch.
>> > Correct !

>>
>> Ah, I'm glad you agree
>>
>> >>Use a server side process.
>> > This is what i tried to convince the webmaster to do this way- but he
>> > say: It works correctly for me and for another people, therefore you
>> > must have a problem with your pc....grrr....

>>
>> So, politely ask said "webmaster", and I emphasise the quotation marks, to
>> start his/her own thread here extoling the virtues of mailto:. Said
>> webmaster will be soundly denounced. Just might be an educational experience
>> for the "webmaster".
>>
>> > I remberred that i used in the past <FORM
>> > ACTION="http://home.scarlet.be/cgi-bin/FormMail.pl" METHOD=POST>

>>
>> Yes, that is how it is done, but please to not use Matts formail stuff. It
>> is riddled with security problems (that is it will be used to send spam from
>> your server). Build your own server side process. It is only about twelve
>> lines of PHP. Ask over at comp.lang.php or simply visit the PHP manual where
>> an example is provided.
>>
>> > but .....the webmaster doenot like perl and is convinced that his
>> > method should work for everybody...

>>
>> A webmaster who doesn't like Perl? That I can handle but the implication is
>> that the webmaster does not like server side stuff. This is an oxymoron
>> these days.
>>
>> Tell this so called webmaster that the *ONLY* reliable way, for every
>> viewer, is to do this server side.
>>
>> > The question is : Why this construction works with this "another
>> > people" and not with me ?

>>
>> Your browser is not connected correctly to your email client. The browser
>> does not pass all the required info. The email client does not accept all
>> the required info. Any number of things. This is why mailto: is broken. Just
>> like it is broken for those gmail and library people.
>>
>> And remember, you will never get a complaint from those who fill in your
>> "form" and get no response. They have already gone to your opposition.
>>

>Yeah, what he said +.
>If you are going to use a mailto link you should use a form to send a
>request with that same message (with some kind of server side script )
>as a back-up.

So the webmaster, if the mailto method is functioning, will receive
two identical mails ?

 
Reply With Quote
 
HughPugh
Guest
Posts: n/a
 
      02-23-2008
On Feb 22, 5:59 pm, Raymond.Sch...@pircarre.be (Raymond SCHMIT) wrote:
> On Fri, 22 Feb 2008 07:53:19 -0800 (PST), Chaddy2222
>
>
>
> <spamlovermailbox-sicur...@yahoo.com.au> wrote:
> >On Feb 22, 8:47 pm, "rf" <r...@invalid.com> wrote:
> >> "Raymond SCHMIT" <Raymond.Sch...@pircarre.be> wrote in message

>
> >>news:...

>
> >> > On Thu, 21 Feb 2008 23:44:59 GMT, "rf" <r...@invalid.com> wrote:

>
> >> >>"Raymond SCHMIT" <Raymond.Sch...@pircarre.be> wrote in message
> >> >>news:...
> >> >>> Hello everybody,
> >> >>> On an outing site, there is a FORM used to ask to receive a
> >> >>> login/password for accessing to the "co-voiturage" (car-sharing) part
> >> >>> of the site.

>
> >> >>> <FORM ACTION="mailto:i...@brol.be" METHOD=POST name=forme
> >> >>> enctype="text/plain">

>
> >> >>mailto: is broken.
> >> > Thanks for answering. but...
> >> > I don't understant this sentence.

>
> >> action="mailto:... is broken. It does not work reliably. It may work
> >> sometimes but it does not work every time. Even if it does appear to work
> >> for your viewer it may not do what you think it does, as you have found. Not
> >> working 100% of the time is termed broken.

>
> >> >>Apart from your problem, what about somebody who uses, say, gmail, or
> >> >>somebody in a public library. In both cases there is no email client for
> >> >>mailto: to launch.
> >> > Correct !

>
> >> Ah, I'm glad you agree

>
> >> >>Use a server side process.
> >> > This is what i tried to convince the webmaster to do this way- but he
> >> > say: It works correctly for me and for another people, therefore you
> >> > must have a problem with your pc....grrr....

>
> >> So, politely ask said "webmaster", and I emphasise the quotation marks, to
> >> start his/her own thread here extoling the virtues of mailto:. Said
> >> webmaster will be soundly denounced. Just might be an educational experience
> >> for the "webmaster".

>
> >> > I remberred that i used in the past <FORM
> >> > ACTION="http://home.scarlet.be/cgi-bin/FormMail.pl" METHOD=POST>

>
> >> Yes, that is how it is done, but please to not use Matts formail stuff. It
> >> is riddled with security problems (that is it will be used to send spam from
> >> your server). Build your own server side process. It is only about twelve
> >> lines of PHP. Ask over at comp.lang.php or simply visit the PHP manual where
> >> an example is provided.

>
> >> > but .....the webmaster doenot like perl and is convinced that his
> >> > method should work for everybody...

>
> >> A webmaster who doesn't like Perl? That I can handle but the implication is
> >> that the webmaster does not like server side stuff. This is an oxymoron
> >> these days.

>
> >> Tell this so called webmaster that the *ONLY* reliable way, for every
> >> viewer, is to do this server side.

>
> >> > The question is : Why this construction works with this "another
> >> > people" and not with me ?

>
> >> Your browser is not connected correctly to your email client. The browser
> >> does not pass all the required info. The email client does not accept all
> >> the required info. Any number of things. This is why mailto: is broken. Just
> >> like it is broken for those gmail and library people.

>
> >> And remember, you will never get a complaint from those who fill in your
> >> "form" and get no response. They have already gone to your opposition.

>
> >Yeah, what he said +.
> >If you are going to use a mailto link you should use a form to send a
> >request with that same message (with some kind of server side script )
> >as a back-up.

>
> So the webmaster, if the mailto method is functioning, will receive
> two identical mails ?


To put it simply, do not use mailto as a form action. It will never
work as expected. I don't think you are understanding what you are
being told, so know that your 'webmaster' does not know what s/he is
saying.
 
Reply With Quote
 
Raymond SCHMIT
Guest
Posts: n/a
 
      02-23-2008
On Fri, 22 Feb 2008 20:35:01 -0800 (PST), HughPugh
<> wrote:

>On Feb 22, 5:59 pm, Raymond.Sch...@pircarre.be (Raymond SCHMIT) wrote:
>> On Fri, 22 Feb 2008 07:53:19 -0800 (PST), Chaddy2222
>>
>>
>>
>> <spamlovermailbox-sicur...@yahoo.com.au> wrote:
>> >On Feb 22, 8:47 pm, "rf" <r...@invalid.com> wrote:
>> >> "Raymond SCHMIT" <Raymond.Sch...@pircarre.be> wrote in message

>>
>> >>news:...

>>
>> >> > On Thu, 21 Feb 2008 23:44:59 GMT, "rf" <r...@invalid.com> wrote:

>>
>> >> >>"Raymond SCHMIT" <Raymond.Sch...@pircarre.be> wrote in message
>> >> >>news:...
>> >> >>> Hello everybody,
>> >> >>> On an outing site, there is a FORM used to ask to receive a
>> >> >>> login/password for accessing to the "co-voiturage" (car-sharing) part
>> >> >>> of the site.

>>
>> >> >>> <FORM ACTION="mailto:i...@brol.be" METHOD=POST name=forme
>> >> >>> enctype="text/plain">

>>
>> >> >>mailto: is broken.
>> >> > Thanks for answering. but...
>> >> > I don't understant this sentence.

>>
>> >> action="mailto:... is broken. It does not work reliably. It may work
>> >> sometimes but it does not work every time. Even if it does appear to work
>> >> for your viewer it may not do what you think it does, as you have found. Not
>> >> working 100% of the time is termed broken.

>>
>> >> >>Apart from your problem, what about somebody who uses, say, gmail, or
>> >> >>somebody in a public library. In both cases there is no email client for
>> >> >>mailto: to launch.
>> >> > Correct !

>>
>> >> Ah, I'm glad you agree

>>
>> >> >>Use a server side process.
>> >> > This is what i tried to convince the webmaster to do this way- but he
>> >> > say: It works correctly for me and for another people, therefore you
>> >> > must have a problem with your pc....grrr....

>>
>> >> So, politely ask said "webmaster", and I emphasise the quotation marks, to
>> >> start his/her own thread here extoling the virtues of mailto:. Said
>> >> webmaster will be soundly denounced. Just might be an educational experience
>> >> for the "webmaster".

>>
>> >> > I remberred that i used in the past <FORM
>> >> > ACTION="http://home.scarlet.be/cgi-bin/FormMail.pl" METHOD=POST>

>>
>> >> Yes, that is how it is done, but please to not use Matts formail stuff. It
>> >> is riddled with security problems (that is it will be used to send spam from
>> >> your server). Build your own server side process. It is only about twelve
>> >> lines of PHP. Ask over at comp.lang.php or simply visit the PHP manual where
>> >> an example is provided.

>>
>> >> > but .....the webmaster doenot like perl and is convinced that his
>> >> > method should work for everybody...

>>
>> >> A webmaster who doesn't like Perl? That I can handle but the implication is
>> >> that the webmaster does not like server side stuff. This is an oxymoron
>> >> these days.

>>
>> >> Tell this so called webmaster that the *ONLY* reliable way, for every
>> >> viewer, is to do this server side.

>>
>> >> > The question is : Why this construction works with this "another
>> >> > people" and not with me ?

>>
>> >> Your browser is not connected correctly to your email client. The browser
>> >> does not pass all the required info. The email client does not accept all
>> >> the required info. Any number of things. This is why mailto: is broken. Just
>> >> like it is broken for those gmail and library people.

>>
>> >> And remember, you will never get a complaint from those who fill in your
>> >> "form" and get no response. They have already gone to your opposition.

>>
>> >Yeah, what he said +.
>> >If you are going to use a mailto link you should use a form to send a
>> >request with that same message (with some kind of server side script )
>> >as a back-up.

>>
>> So the webmaster, if the mailto method is functioning, will receive
>> two identical mails ?

>
>To put it simply, do not use mailto as a form action. It will never
>work as expected. I don't think you are understanding what you are
>being told, so know that your 'webmaster' does not know what s/he is
>saying.


I agree 200% with you, i am convinced that the "mailto" solution is
*not* a solution. the only correct way using a form to sent a mail is
to use a php or a perl routine to do it by the server. I have proposed
at the webmaster that i will create for him(heu...pardon ....her )
the needed php pages.... I am waiting their answer....
If i have the job(no retribution ), i will probably asking help
here to do it in "the best way"
 
Reply With Quote
 
dorayme
Guest
Posts: n/a
 
      02-23-2008
In article <>,
(Raymond SCHMIT) wrote:

> I agree 200% with you,


and showed it by quoting everything at length...

--
dorayme
 
Reply With Quote
 
Raymond SCHMIT
Guest
Posts: n/a
 
      02-25-2008
On Sun, 24 Feb 2008 09:20:37 +1100, dorayme
<> wrote:

>In article <>,
> (Raymond SCHMIT) wrote:
>
>> I agree 200% with you,

>
>and showed it by quoting everything at length...


Sorry, i had not realised
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Did this stop working? Or did it ever work? (metamagic) Daniel Waite Ruby 2 05-01-2008 11:08 PM
very very very long integer shanx__=|;- C Programming 19 10-19-2004 03:55 PM
very very very long integer Abhishek Jha C Programming 4 10-17-2004 08:19 AM
Quick Book file access very very very slow Thomas Reed Computer Support 7 04-09-2004 08:09 PM
very Very VERY dumb Question About The new Set( ) 's Raymond Arthur St. Marie II of III Python 4 07-27-2003 12:09 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57