PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Autres forums > Forum Programmation & Conception > alt.comp.lang.php > Scripting Language
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
Scripting Language

Réponse
 
LinkBack Outils de la discussion
Vieux 29/07/2007, 10h22   #1
Frank
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Scripting Language

Good morning,

I'm a newbie and I'm about to study a scripting language to create an HTML
form. What's the best language for this, and why?

JavaScript? PHP? PERL? Ajax? ASP? VBScript?

Many thanks

Frank





  Réponse avec citation
Vieux 29/07/2007, 14h20   #2
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Rami Elomaa wrote:
> Frank kirjoitti:
>> Good morning,
>>
>> I'm a newbie and I'm about to study a scripting language to create an
>> HTML form. What's the best language for this, and why?
>>
>> JavaScript? PHP? PERL? Ajax? ASP? VBScript?

>
> First you need to get your terms right. There's client-side scripting,
> and then there's server-side scripting. PHP, Perl, ASP and JSP (which
> you didn't mention, but it's wort looking into still) are server-side
> languages, JavaScript and VBScript are client-side. Ajax is not a
> language at all, it's the name for a technique that allows javascript to
> communicate with some server-side application.
>


Yes, you need to get your terms right. VBScript is also server-side.

> Choosing between javascript and vbscript, there really is no
> competition, VBScript is microsoft proprietary bullshit, it works only
> in MS Internet Explorer, and knowing that there is a variety of other
> browsers, you can't choose a language that works in only one of them. So
> for client-side scripts you use javascript. And if possible, don't use
> it, try to make everything work with just server-side scripts.
> JavaScript is just an enhancment, not a complete solution.
>


It also works on Microsoft servers, i.e. IIS. While I'm not fond of it,
I do have a couple of customers who use it. It works quite well, when
done properly.

When run on the server, the client doesn't matter, just like any
server-side language.

> Next the choice between PHP, Perl, ASP and JSP. Again, one of these
> languages is microsoft-only, works only in Windows+IIS webserver,
> wouldn't go there. For PHP, Perl and JSP then, JSP is propably the most
> sophisticated since it's completly object oriented language, maybe most
> difficult to learn but worth it. PHP and Perl are good choices both,
> just pick one. Since this is a php group I have to recommend php.
>


ASP is not a language. It is an interface. You can use several
different languages with it.

JSP is also not a language, but a way of adding Java code to web pages.
The underlying code is Java.

Before suggesting someone else get their terminology straight, I suggest
you get yours straight. And get rid of the attitude.

And to answer the op's question - it depends a lot on your previous
experience, what you're going to be doing, the OS and server you'll be
using, and several other things. All of the languages are good - in
their place. But all can also be bad, when not in their place. That's
why there are so many languages.

What you're asking is like asking "Which car should I buy"? Just not
enough information.

I use PHP, Perl, VBScript and Java, depending on the situation. PHP and
Perl are more widely available than VBScript or Java. I also think PHP
is a little easier for a beginner to learn, so everything else being
equal (which it isn't), I would recommend PHP.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 29/07/2007, 14h56   #3
Frank
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Well Thank you for your input. All I need to do is an HTML reply form page,
I'm using XP- no server yet. I'll go for PHP.

Thanks again

Frank


"Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
news:RoydnQKHP_vcCTHbnZ2dnUVZ_vShnZ2d@comcast.com. ..
> Rami Elomaa wrote:
>> Frank kirjoitti:
>>> Good morning,
>>>
>>> I'm a newbie and I'm about to study a scripting language to create an
>>> HTML form. What's the best language for this, and why?
>>>
>>> JavaScript? PHP? PERL? Ajax? ASP? VBScript?

>>
>> First you need to get your terms right. There's client-side scripting,
>> and then there's server-side scripting. PHP, Perl, ASP and JSP (which you
>> didn't mention, but it's wort looking into still) are server-side
>> languages, JavaScript and VBScript are client-side. Ajax is not a
>> language at all, it's the name for a technique that allows javascript to
>> communicate with some server-side application.
>>

>
> Yes, you need to get your terms right. VBScript is also server-side.
>
>> Choosing between javascript and vbscript, there really is no competition,
>> VBScript is microsoft proprietary bullshit, it works only in MS Internet
>> Explorer, and knowing that there is a variety of other browsers, you
>> can't choose a language that works in only one of them. So for
>> client-side scripts you use javascript. And if possible, don't use it,
>> try to make everything work with just server-side scripts. JavaScript is
>> just an enhancment, not a complete solution.
>>

>
> It also works on Microsoft servers, i.e. IIS. While I'm not fond of it, I
> do have a couple of customers who use it. It works quite well, when done
> properly.
>
> When run on the server, the client doesn't matter, just like any
> server-side language.
>
>> Next the choice between PHP, Perl, ASP and JSP. Again, one of these
>> languages is microsoft-only, works only in Windows+IIS webserver,
>> wouldn't go there. For PHP, Perl and JSP then, JSP is propably the most
>> sophisticated since it's completly object oriented language, maybe most
>> difficult to learn but worth it. PHP and Perl are good choices both, just
>> pick one. Since this is a php group I have to recommend php.
>>

>
> ASP is not a language. It is an interface. You can use several different
> languages with it.
>
> JSP is also not a language, but a way of adding Java code to web pages.
> The underlying code is Java.
>
> Before suggesting someone else get their terminology straight, I suggest
> you get yours straight. And get rid of the attitude.
>
> And to answer the op's question - it depends a lot on your previous
> experience, what you're going to be doing, the OS and server you'll be
> using, and several other things. All of the languages are good - in their
> place. But all can also be bad, when not in their place. That's why
> there are so many languages.
>
> What you're asking is like asking "Which car should I buy"? Just not
> enough information.
>
> I use PHP, Perl, VBScript and Java, depending on the situation. PHP and
> Perl are more widely available than VBScript or Java. I also think PHP is
> a little easier for a beginner to learn, so everything else being equal
> (which it isn't), I would recommend PHP.
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstucklex@attglobal.net
> ==================



  Réponse avec citation
Vieux 29/07/2007, 15h26   #4
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Frank wrote:
> "Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
> news:RoydnQKHP_vcCTHbnZ2dnUVZ_vShnZ2d@comcast.com. ..
>> Rami Elomaa wrote:
>>> Frank kirjoitti:
>>>> Good morning,
>>>>
>>>> I'm a newbie and I'm about to study a scripting language to create an
>>>> HTML form. What's the best language for this, and why?
>>>>
>>>> JavaScript? PHP? PERL? Ajax? ASP? VBScript?
>>> First you need to get your terms right. There's client-side scripting,
>>> and then there's server-side scripting. PHP, Perl, ASP and JSP (which you
>>> didn't mention, but it's wort looking into still) are server-side
>>> languages, JavaScript and VBScript are client-side. Ajax is not a
>>> language at all, it's the name for a technique that allows javascript to
>>> communicate with some server-side application.
>>>

>> Yes, you need to get your terms right. VBScript is also server-side.
>>
>>> Choosing between javascript and vbscript, there really is no competition,
>>> VBScript is microsoft proprietary bullshit, it works only in MS Internet
>>> Explorer, and knowing that there is a variety of other browsers, you
>>> can't choose a language that works in only one of them. So for
>>> client-side scripts you use javascript. And if possible, don't use it,
>>> try to make everything work with just server-side scripts. JavaScript is
>>> just an enhancment, not a complete solution.
>>>

>> It also works on Microsoft servers, i.e. IIS. While I'm not fond of it, I
>> do have a couple of customers who use it. It works quite well, when done
>> properly.
>>
>> When run on the server, the client doesn't matter, just like any
>> server-side language.
>>
>>> Next the choice between PHP, Perl, ASP and JSP. Again, one of these
>>> languages is microsoft-only, works only in Windows+IIS webserver,
>>> wouldn't go there. For PHP, Perl and JSP then, JSP is propably the most
>>> sophisticated since it's completly object oriented language, maybe most
>>> difficult to learn but worth it. PHP and Perl are good choices both, just
>>> pick one. Since this is a php group I have to recommend php.
>>>

>> ASP is not a language. It is an interface. You can use several different
>> languages with it.
>>
>> JSP is also not a language, but a way of adding Java code to web pages.
>> The underlying code is Java.
>>
>> Before suggesting someone else get their terminology straight, I suggest
>> you get yours straight. And get rid of the attitude.
>>
>> And to answer the op's question - it depends a lot on your previous
>> experience, what you're going to be doing, the OS and server you'll be
>> using, and several other things. All of the languages are good - in their
>> place. But all can also be bad, when not in their place. That's why
>> there are so many languages.
>>
>> What you're asking is like asking "Which car should I buy"? Just not
>> enough information.
>>
>> I use PHP, Perl, VBScript and Java, depending on the situation. PHP and
>> Perl are more widely available than VBScript or Java. I also think PHP is
>> a little easier for a beginner to learn, so everything else being equal
>> (which it isn't), I would recommend PHP.
>>

> Well Thank you for your input. All I need to do is an HTML reply form
> page, I'm using XP- no server yet. I'll go for PHP.
>
> Thanks again
>
> Frank
>
>


(Top posting fixed)

You will still need a server to send the pages, but it will run fine on
XP. I recommend you install WAMP (http://www.wampserver.com/en/). It
will install Apache, PHP and MySQL on your Windows system.

P.S. Please don't top post. Thanks.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 29/07/2007, 16h49   #5
Rami Elomaa
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Jerry Stuckle kirjoitti:
> Rami Elomaa wrote:
>> Frank kirjoitti:
>>> Good morning,
>>>
>>> I'm a newbie and I'm about to study a scripting language to create an
>>> HTML form. What's the best language for this, and why?
>>>
>>> JavaScript? PHP? PERL? Ajax? ASP? VBScript?

>>
>> First you need to get your terms right. There's client-side scripting,
>> and then there's server-side scripting. PHP, Perl, ASP and JSP (which
>> you didn't mention, but it's wort looking into still) are server-side
>> languages, JavaScript and VBScript are client-side. Ajax is not a
>> language at all, it's the name for a technique that allows javascript
>> to communicate with some server-side application.
>>

>
> Yes, you need to get your terms right. VBScript is also server-side.
>
>> Choosing between javascript and vbscript, there really is no
>> competition, VBScript is microsoft proprietary bullshit, it works only
>> in MS Internet Explorer, and knowing that there is a variety of other
>> browsers, you can't choose a language that works in only one of them.
>> So for client-side scripts you use javascript. And if possible, don't
>> use it, try to make everything work with just server-side scripts.
>> JavaScript is just an enhancment, not a complete solution.
>>

>
> It also works on Microsoft servers, i.e. IIS. While I'm not fond of it,
> I do have a couple of customers who use it. It works quite well, when
> done properly.
>
> When run on the server, the client doesn't matter, just like any
> server-side language.
>
>> Next the choice between PHP, Perl, ASP and JSP. Again, one of these
>> languages is microsoft-only, works only in Windows+IIS webserver,
>> wouldn't go there. For PHP, Perl and JSP then, JSP is propably the
>> most sophisticated since it's completly object oriented language,
>> maybe most difficult to learn but worth it. PHP and Perl are good
>> choices both, just pick one. Since this is a php group I have to
>> recommend php.
>>

>
> ASP is not a language. It is an interface. You can use several
> different languages with it.
>
> JSP is also not a language, but a way of adding Java code to web pages.
> The underlying code is Java.
>
> Before suggesting someone else get their terminology straight, I suggest
> you get yours straight. And get rid of the attitude.


Thanks Jerry for correcting me. JavaScript as server-side is such an
unusual situation that I don't even consider it as such, even though it
is entierly possible as you pointed out. As for VB and ASP you are
correct, my bad. But what do you mean by attitude and why should I get
rid of it? I thought I was ing the fellow but it seems that you know
better than me so from now on I'll say nothing. Instead of getting rid
of an attitude I'll get rid of myself.

It's been fun here, time to move on.

-Rammy

--
Rami.Elomaa@gmail.com

"Wikipedia on vähän niinq internetin raamattu, kukaan ei pohjimmiltaan
usko siihen ja kukaan ei tiedä mikä pitää paikkansa." -- z00ze
  Réponse avec citation
Vieux 29/07/2007, 18h43   #6
Frank
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Rami, thanks for ing me out. You tried to , and I appreciate that.
Keep ing others!!

Best

Frank

"Rami Elomaa" <rami.elomaa@gmail.com> wrote in message
news:f8id00$88v$1@nyytiset.pp.htv.fi...
> Jerry Stuckle kirjoitti:
>> Rami Elomaa wrote:
>>> Frank kirjoitti:
>>>> Good morning,
>>>>
>>>> I'm a newbie and I'm about to study a scripting language to create an
>>>> HTML form. What's the best language for this, and why?
>>>>
>>>> JavaScript? PHP? PERL? Ajax? ASP? VBScript?
>>>
>>> First you need to get your terms right. There's client-side scripting,
>>> and then there's server-side scripting. PHP, Perl, ASP and JSP (which
>>> you didn't mention, but it's wort looking into still) are server-side
>>> languages, JavaScript and VBScript are client-side. Ajax is not a
>>> language at all, it's the name for a technique that allows javascript to
>>> communicate with some server-side application.
>>>

>>
>> Yes, you need to get your terms right. VBScript is also server-side.
>>
>>> Choosing between javascript and vbscript, there really is no
>>> competition, VBScript is microsoft proprietary bullshit, it works only
>>> in MS Internet Explorer, and knowing that there is a variety of other
>>> browsers, you can't choose a language that works in only one of them. So
>>> for client-side scripts you use javascript. And if possible, don't use
>>> it, try to make everything work with just server-side scripts.
>>> JavaScript is just an enhancment, not a complete solution.
>>>

>>
>> It also works on Microsoft servers, i.e. IIS. While I'm not fond of it,
>> I do have a couple of customers who use it. It works quite well, when
>> done properly.
>>
>> When run on the server, the client doesn't matter, just like any
>> server-side language.
>>
>>> Next the choice between PHP, Perl, ASP and JSP. Again, one of these
>>> languages is microsoft-only, works only in Windows+IIS webserver,
>>> wouldn't go there. For PHP, Perl and JSP then, JSP is propably the most
>>> sophisticated since it's completly object oriented language, maybe most
>>> difficult to learn but worth it. PHP and Perl are good choices both,
>>> just pick one. Since this is a php group I have to recommend php.
>>>

>>
>> ASP is not a language. It is an interface. You can use several
>> different languages with it.
>>
>> JSP is also not a language, but a way of adding Java code to web pages.
>> The underlying code is Java.
>>
>> Before suggesting someone else get their terminology straight, I suggest
>> you get yours straight. And get rid of the attitude.

>
> Thanks Jerry for correcting me. JavaScript as server-side is such an
> unusual situation that I don't even consider it as such, even though it is
> entierly possible as you pointed out. As for VB and ASP you are correct,
> my bad. But what do you mean by attitude and why should I get rid of it? I
> thought I was ing the fellow but it seems that you know better than me
> so from now on I'll say nothing. Instead of getting rid of an attitude
> I'll get rid of myself.
>
> It's been fun here, time to move on.
>
> -Rammy
>
> --
> Rami.Elomaa@gmail.com
>
> "Wikipedia on vähän niinq internetin raamattu, kukaan ei pohjimmiltaan
> usko siihen ja kukaan ei tiedä mikä pitää paikkansa." -- z00ze



  Réponse avec citation
Vieux 29/07/2007, 22h35   #7
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Rami Elomaa wrote:
> Jerry Stuckle kirjoitti:
>> Rami Elomaa wrote:
>>> Frank kirjoitti:
>>>> Good morning,
>>>>
>>>> I'm a newbie and I'm about to study a scripting language to create
>>>> an HTML form. What's the best language for this, and why?
>>>>
>>>> JavaScript? PHP? PERL? Ajax? ASP? VBScript?
>>>
>>> First you need to get your terms right. There's client-side
>>> scripting, and then there's server-side scripting. PHP, Perl, ASP and
>>> JSP (which you didn't mention, but it's wort looking into still) are
>>> server-side languages, JavaScript and VBScript are client-side. Ajax
>>> is not a language at all, it's the name for a technique that allows
>>> javascript to communicate with some server-side application.
>>>

>>
>> Yes, you need to get your terms right. VBScript is also server-side.
>>
>>> Choosing between javascript and vbscript, there really is no
>>> competition, VBScript is microsoft proprietary bullshit, it works
>>> only in MS Internet Explorer, and knowing that there is a variety of
>>> other browsers, you can't choose a language that works in only one of
>>> them. So for client-side scripts you use javascript. And if possible,
>>> don't use it, try to make everything work with just server-side
>>> scripts. JavaScript is just an enhancment, not a complete solution.
>>>

>>
>> It also works on Microsoft servers, i.e. IIS. While I'm not fond of
>> it, I do have a couple of customers who use it. It works quite well,
>> when done properly.
>>
>> When run on the server, the client doesn't matter, just like any
>> server-side language.
>>
>>> Next the choice between PHP, Perl, ASP and JSP. Again, one of these
>>> languages is microsoft-only, works only in Windows+IIS webserver,
>>> wouldn't go there. For PHP, Perl and JSP then, JSP is propably the
>>> most sophisticated since it's completly object oriented language,
>>> maybe most difficult to learn but worth it. PHP and Perl are good
>>> choices both, just pick one. Since this is a php group I have to
>>> recommend php.
>>>

>>
>> ASP is not a language. It is an interface. You can use several
>> different languages with it.
>>
>> JSP is also not a language, but a way of adding Java code to web
>> pages. The underlying code is Java.
>>
>> Before suggesting someone else get their terminology straight, I
>> suggest you get yours straight. And get rid of the attitude.

>
> Thanks Jerry for correcting me. JavaScript as server-side is such an
> unusual situation that I don't even consider it as such, even though it
> is entierly possible as you pointed out. As for VB and ASP you are
> correct, my bad. But what do you mean by attitude and why should I get
> rid of it? I thought I was ing the fellow but it seems that you know
> better than me so from now on I'll say nothing. Instead of getting rid
> of an attitude I'll get rid of myself.
>
> It's been fun here, time to move on.
>
> -Rammy
>


Rammy,

I didn't say anything about Javascript being server side. Only VBScript.

As for your attitude - I'm referring to your comments such as "VBScript
is microsoft proprietary bullshit".

Maybe it is, and maybe you feel this way. However, the op was
requesting an honest comparison between languages, and such comments
limit your credibility.




--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 30/07/2007, 06h38   #8
Rami Elomaa
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

"Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
news:WcidnTsFVfvtlTDbnZ2dnUVZ_qainZ2d@comcast.com. ..
> Rami Elomaa wrote:
>> Jerry Stuckle kirjoitti:
>>> Rami Elomaa wrote:
>>>> Frank kirjoitti:
>>>>> Good morning,
>>>>>
>>>>> I'm a newbie and I'm about to study a scripting language to create an
>>>>> HTML form. What's the best language for this, and why?
>>>>>
>>>>> JavaScript? PHP? PERL? Ajax? ASP? VBScript?
>>>>
>>>> First you need to get your terms right. There's client-side scripting,
>>>> and then there's server-side scripting. PHP, Perl, ASP and JSP (which
>>>> you didn't mention, but it's wort looking into still) are server-side
>>>> languages, JavaScript and VBScript are client-side. Ajax is not a
>>>> language at all, it's the name for a technique that allows javascript
>>>> to communicate with some server-side application.
>>>>
>>>
>>> Yes, you need to get your terms right. VBScript is also server-side.
>>>
>>>> Choosing between javascript and vbscript, there really is no
>>>> competition, VBScript is microsoft proprietary bullshit, it works only
>>>> in MS Internet Explorer, and knowing that there is a variety of other
>>>> browsers, you can't choose a language that works in only one of them.
>>>> So for client-side scripts you use javascript. And if possible, don't
>>>> use it, try to make everything work with just server-side scripts.
>>>> JavaScript is just an enhancment, not a complete solution.
>>>>
>>>
>>> It also works on Microsoft servers, i.e. IIS. While I'm not fond of it,
>>> I do have a couple of customers who use it. It works quite well, when
>>> done properly.
>>>
>>> When run on the server, the client doesn't matter, just like any
>>> server-side language.
>>>
>>>> Next the choice between PHP, Perl, ASP and JSP. Again, one of these
>>>> languages is microsoft-only, works only in Windows+IIS webserver,
>>>> wouldn't go there. For PHP, Perl and JSP then, JSP is propably the most
>>>> sophisticated since it's completly object oriented language, maybe most
>>>> difficult to learn but worth it. PHP and Perl are good choices both,
>>>> just pick one. Since this is a php group I have to recommend php.
>>>>
>>>
>>> ASP is not a language. It is an interface. You can use several
>>> different languages with it.
>>>
>>> JSP is also not a language, but a way of adding Java code to web pages.
>>> The underlying code is Java.
>>>
>>> Before suggesting someone else get their terminology straight, I suggest
>>> you get yours straight. And get rid of the attitude.

>>
>> Thanks Jerry for correcting me. JavaScript as server-side is such an
>> unusual situation that I don't even consider it as such, even though it
>> is entierly possible as you pointed out. As for VB and ASP you are
>> correct, my bad. But what do you mean by attitude and why should I get
>> rid of it? I thought I was ing the fellow but it seems that you know
>> better than me so from now on I'll say nothing. Instead of getting rid of
>> an attitude I'll get rid of myself.
>>
>> It's been fun here, time to move on.
>>
>> -Rammy
>>

>
> Rammy,
>
> I didn't say anything about Javascript being server side. Only VBScript.


Well nevertheless JS is also server-side.

> As for your attitude - I'm referring to your comments such as "VBScript is
> microsoft proprietary bullshit".


Well it is.

> Maybe it is, and maybe you feel this way. However, the op was requesting
> an honest comparison between languages, and such comments limit your
> credibility.


Fine, as I said earlier, I shall not bother this group again with my
attitude.

--
Rami.Elomaa@gmail.com

"Good tea. Nice house." -- Worf


  Réponse avec citation
Vieux 30/07/2007, 08h41   #9
Geoff Berrow
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Message-ID: <lPeri.199518$Kr4.156017@reader1.news.saunalahti.f i> from
Rami Elomaa contained the following:

>> Maybe it is, and maybe you feel this way. However, the op was requesting
>> an honest comparison between languages, and such comments limit your
>> credibility.

>
>Fine, as I said earlier, I shall not bother this group again with my
>attitude.



That's your loss. Sheesh, you haven't made it in here until you've had
a tongue lashing from Jerry Stuckle. Wear it as a badge of honour. ;-)
--
Geoff Berrow 0110001001101100010000000110
001101101011011001000110111101100111001011
100110001101101111001011100111010101101011
  Réponse avec citation
Vieux 30/07/2007, 12h37   #10
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Rami Elomaa wrote:
> "Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
> news:WcidnTsFVfvtlTDbnZ2dnUVZ_qainZ2d@comcast.com. ..
>> Rami Elomaa wrote:
>>> Jerry Stuckle kirjoitti:
>>>> Rami Elomaa wrote:
>>>>> Frank kirjoitti:
>>>>>> Good morning,
>>>>>>
>>>>>> I'm a newbie and I'm about to study a scripting language to create an
>>>>>> HTML form. What's the best language for this, and why?
>>>>>>
>>>>>> JavaScript? PHP? PERL? Ajax? ASP? VBScript?
>>>>> First you need to get your terms right. There's client-side scripting,
>>>>> and then there's server-side scripting. PHP, Perl, ASP and JSP (which
>>>>> you didn't mention, but it's wort looking into still) are server-side
>>>>> languages, JavaScript and VBScript are client-side. Ajax is not a
>>>>> language at all, it's the name for a technique that allows javascript
>>>>> to communicate with some server-side application.
>>>>>
>>>> Yes, you need to get your terms right. VBScript is also server-side.
>>>>
>>>>> Choosing between javascript and vbscript, there really is no
>>>>> competition, VBScript is microsoft proprietary bullshit, it works only
>>>>> in MS Internet Explorer, and knowing that there is a variety of other
>>>>> browsers, you can't choose a language that works in only one of them.
>>>>> So for client-side scripts you use javascript. And if possible, don't
>>>>> use it, try to make everything work with just server-side scripts.
>>>>> JavaScript is just an enhancment, not a complete solution.
>>>>>
>>>> It also works on Microsoft servers, i.e. IIS. While I'm not fond of it,
>>>> I do have a couple of customers who use it. It works quite well, when
>>>> done properly.
>>>>
>>>> When run on the server, the client doesn't matter, just like any
>>>> server-side language.
>>>>
>>>>> Next the choice between PHP, Perl, ASP and JSP. Again, one of these
>>>>> languages is microsoft-only, works only in Windows+IIS webserver,
>>>>> wouldn't go there. For PHP, Perl and JSP then, JSP is propably the most
>>>>> sophisticated since it's completly object oriented language, maybe most
>>>>> difficult to learn but worth it. PHP and Perl are good choices both,
>>>>> just pick one. Since this is a php group I have to recommend php.
>>>>>
>>>> ASP is not a language. It is an interface. You can use several
>>>> different languages with it.
>>>>
>>>> JSP is also not a language, but a way of adding Java code to web pages.
>>>> The underlying code is Java.
>>>>
>>>> Before suggesting someone else get their terminology straight, I suggest
>>>> you get yours straight. And get rid of the attitude.
>>> Thanks Jerry for correcting me. JavaScript as server-side is such an
>>> unusual situation that I don't even consider it as such, even though it
>>> is entierly possible as you pointed out. As for VB and ASP you are
>>> correct, my bad. But what do you mean by attitude and why should I get
>>> rid of it? I thought I was ing the fellow but it seems that you know
>>> better than me so from now on I'll say nothing. Instead of getting rid of
>>> an attitude I'll get rid of myself.
>>>
>>> It's been fun here, time to move on.
>>>
>>> -Rammy
>>>

>> Rammy,
>>
>> I didn't say anything about Javascript being server side. Only VBScript.

>
> Well nevertheless JS is also server-side.
>
>> As for your attitude - I'm referring to your comments such as "VBScript is
>> microsoft proprietary bullshit".

>
> Well it is.
>
>> Maybe it is, and maybe you feel this way. However, the op was requesting
>> an honest comparison between languages, and such comments limit your
>> credibility.

>
> Fine, as I said earlier, I shall not bother this group again with my
> attitude.
>


That's your choice. I was just trying correct a couple of
misunderstandings you had (i.e. VBSCript being client side only).

Also, just a little advice about how your responses can be more
credible. While you may think VBScript is BS, you have given no reasons
for that statement. An emotional statement like that without backup and
your credibility falls to zero.

And BTW - that does not mean I support VBScript.

But if you want to go, fine. If you're that thin skinned that a
correction upsets you, you won't last long in this group anyway.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 30/07/2007, 12h39   #11
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Geoff Berrow wrote:
> Message-ID: <lPeri.199518$Kr4.156017@reader1.news.saunalahti.f i> from
> Rami Elomaa contained the following:
>
>>> Maybe it is, and maybe you feel this way. However, the op was requesting
>>> an honest comparison between languages, and such comments limit your
>>> credibility.

>> Fine, as I said earlier, I shall not bother this group again with my
>> attitude.

>
>
> That's your loss. Sheesh, you haven't made it in here until you've had
> a tongue lashing from Jerry Stuckle. Wear it as a badge of honour. ;-)


And I didn't make any attacks on him. All I did was correct some
mis-statements he had about some of the products and suggest he might
change his wording a little to improve his credibility.

None of it was personal in nature.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 30/07/2007, 17h22   #12
Krustov
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

<comp.lang.php>
<Jerry Stuckle>
<Mon, 30 Jul 2007 07:37:59 -0400>
<AdqdnWhmiqtXUDDbnZ2dnUVZ_uWlnZ2d@comcast.com>

> If you're that thin skinned that a
> correction upsets you, you won't last long in this group anyway.
>


Does somebody like you or hinder this newsgroup ? .

Given the nature of this type of newsgroup with php newbies asking
newbie questions on a regular basis - are you really sure this newsgroup
is a good place for you to be if newbie questions give you usenet rage .


--
www.outerlimitsfan.co.uk
  Réponse avec citation
Vieux 30/07/2007, 18h27   #13
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Scripting Language

Krustov wrote:
> <comp.lang.php>
> <Jerry Stuckle>
> <Mon, 30 Jul 2007 07:37:59 -0400>
> <AdqdnWhmiqtXUDDbnZ2dnUVZ_uWlnZ2d@comcast.com>
>
>> If you're that thin skinned that a
>> correction upsets you, you won't last long in this group anyway.
>>

>
> Does somebody like you or hinder this newsgroup ? .
>
> Given the nature of this type of newsgroup with php newbies asking
> newbie questions on a regular basis - are you really sure this newsgroup
> is a good place for you to be if newbie questions give you usenet rage .
>
>


Read again. I did not "rage" at anyone. Rather, I politely informed
him there were other newsgroups more suited to his post.

It wasn't until he said that he was so upset at this polite correction
that he said he wasn't coming back. And if he's that thin-skinned,
there isn't a group on usenet which won't upset him.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 08h15.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,31499 seconds with 21 queries