• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

CGI, DHTML, PHP, Perl, ...????

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

Vovan

Member
Joined
Jan 4, 2001
Location
Germany
CGI, DHTML, PHP, Perl,CCS ...????

I must make a report about this things .... and I do not have any infos.... :bump head Really! can anybody help? :(
 
Vovan said:
Thanks, people!
Some simple Perl code. . . .perhaps?

simple perl code? there isn't too much out there that is easy.. perl is a HUGE language. I bet only one or two people know of every command in perl.

Here is some simple stuff tho: (havn't run it through a tester)
Code:
#!/usr/bin/perl

# print out headders
print "Content-Type: text/html\n\n";

# hello world!
print "Hello World!";

$i = 0;
$i = $i + 7
print "$i";
will output
Code:
Content-Type: text/html

Hello World!8

hope this helps. If you search for "hello world perl" anywhere, you should get a similar example
 
Vovan said:
Thanks, Su Root! :)
Does anybody know, what is DHTML???

No, I don't know what DHTML is.
I've been away from programming for a while now. I'm finding myself preferring the hardware side.
 
DHTML is short for Dynamic HTML. DHTML refers to Web content that changes each time it is viewed.

If the D is capitalized, (Dynamic HTML), DHMTL refers to HTML 4 extensions that will enable a Web page to react to user input without sending requests to the Web server.

If the d is not capitalized, (dynamic HTML), dHTML refers to the combined use of HTML and any of a variety of technologies (Javascript, CSS, CGI, SSI, Visual Basic, etc.) used to create interactive or animated Web pages.
 
Interesting.

What kind of scripting is used for DHTML? is it proprietary, or is it like Javascript or VBScript?
 
Thanx UM!!! This thing doesn't know anybody, for sure!
Hey, whats SSI??

UnseenMenace said:

If the D is capitalized, (Dynamic HTML), DHMTL refers to HTML 4 extensions that will enable a Web page to react to user input without sending requests to the Web server.

If the d is not capitalized, (dynamic HTML), dHTML refers to the combined use of HTML and any of a variety of technologies (Javascript, CSS, CGI, SSI, Visual Basic, etc.) used to create interactive or animated Web pages.

2 Su Root : Js,CSS,CGI,....
 
Thanks, people!!!!
By the way, I have found something, that is worth clicking on this thema! www.selfhtml.org , It´s in German, French, .... but the only thing in English,that i found is ... intro.
 
Back