What code do you suggest to learn after HTML

The geek forum. PHP, Perl, HTML, hardware questions etc.. it's all in here. Got a techie question? We'll sort you out. Ask your questions or post a link to your own site here!

What code do you suggest to learn after HTML

Postby Pent » Fri May 21, 2004 1:45 pm

I just learned HTML in school. I'm looking for some new codes to learn. I don't know exactly wich ones would be useful and/or simple to learn. (I only know HTML so I'm not that good yet). I know it depends on what you want to do really. If you want to do one thing learn that if you want to do this thing learn that, but maybe there is one that covers a large vairty of things and stuff. Wich one did you learn first? if you can remember. And wich one do you suggest for me to learn next. Thanks. :cool:
User avatar
Pent
 
Posts: 351
Joined: Sat Feb 07, 2004 1:22 pm
Location: michigan

Postby shooraijin » Fri May 21, 2004 1:48 pm

If you mean 'codes' for web page design, it would behoove you to pick up a little CSS, too, so you can understand how that works.

If you mean programming abilities, learning Perl and PHP are two very handy skills for creating interactive websites. JavaScript might also be a good use of your time.
"you're a doctor.... and 27 years.... so...doctor + 27 years = HATORI SOHMA" - RoyalWing, when I was 27
"Al hail the forum editting Shooby! His vibes are law!" - Osaka-chan

I could still be champ, but I'd feel bad taking it away from one of the younger guys. - George Foreman
User avatar
shooraijin
 
Posts: 9927
Joined: Thu Jun 26, 2003 12:00 pm
Location: Southern California

Postby Pent » Fri May 21, 2004 2:07 pm

I don't really know what I exeactly want. Although I might want to learn some stuff to make my website a little more interactive. I know very very basic Java Script, but other then that noten. What can you do with PHP and perl? kind of the same stuff as Javascript or different?
User avatar
Pent
 
Posts: 351
Joined: Sat Feb 07, 2004 1:22 pm
Location: michigan

Postby blkmage » Fri May 21, 2004 3:52 pm

Javascript is usually used to manipulate HTML and the browser in some way, like rollovers and such.

PHP is for dynamic pages, like forums and blogs and stuff.
Perl is used for CGI, usually for handling forms.

PHP and CGI are both server-side, so you'll need a host that can support them.

Javascript is handled by most modern browsers.

CSS is used for positioning and formatting. It is a lot easier to use CSS than <font> tags.

I would suggest CSS and Javascript. Both will be useful and not terribly difficult to learn. However, Javascript is a scripting language and not markup, so it'll be different.
User avatar
blkmage
 
Posts: 4529
Joined: Mon May 03, 2004 5:40 pm

Postby Mithrandir » Sat May 22, 2004 8:42 am

blkmage wrote:Perl is used for CGI, usually for handling forms.

OK... I have to respond to this. Perl is the glue that holds the internet together. It's NOT just used for CGI, that's just what most people learn it for. It's a very handy tool for nearly ANY system task. If you have any intention of acutally doing something other than just a few web pages, it would be worth your time to learn it. I use perl for all my system administrative tasks, and I also wrote a database wrapper for my PHP scripts in Perl. There are modules out there to do nearly anything you could ever hope to do.

For example, I have a program that I wrote in perl at work that grabs data from 3 different internal websites, then compares/merges the data, and then passes it to a person viewing the website from the outside world. Since these internal systems are under the jurisdiction of three different divisions, and their owners have NO interest in helping me do MY job (despite what is best for the organization) it was the only option availible for me.
User avatar
Mithrandir
 
Posts: 11071
Joined: Fri Jun 27, 2003 12:00 pm
Location: You will be baked. And then there will be cake.

Postby Straylight » Sat May 22, 2004 10:10 am

Oldphil is right, perl can do an indredibly large number of things. PHP is different because it's designed specifically with web scripting in mind, which has made it extremely popular for that task.
[align=center]
Image
Banner above created using my avatar generator tool.
You know you want try it.
User avatar
Straylight
 
Posts: 2346
Joined: Mon May 26, 2003 12:00 pm
Location: Manchester, UK

Postby btboy500 » Sat May 22, 2004 10:22 am

I wouldn't be able to recommend anything for web programming, but otherwise, I'd recommend Python as a stable, powerful, and reasonably easy language to learn. From then I'd recommend C++.
User avatar
btboy500
 
Posts: 69
Joined: Wed Dec 03, 2003 4:11 pm
Location: South Florida

Postby glitch1501 » Sat May 22, 2004 4:09 pm

i definatly reccomend css i use it alot

i need to learn perl though

Glitch's Photostream


He wants them to learn to walk and must therefore take away His hand; and if only the will to walk is really there, He is pleased even with their stumbles.

Image

Healing hands of God have mercy on our unclean souls
once again. Jesus Christ, Light of the World, burning
bright within our hearts forever. Freedom means love
without condition, without beginning or an end. Here's
my heart, let it be forever Yours, only You can make
every new day seem so new.
Every New Day - On Distant Shores - Five Iron Frenzy

Nail pierced hands they run with blood
A splitting brow forced by the thorns
His face is writhing with the pain yet it's comforting to me
Passion - Kutless
:thumb:
Image
User avatar
glitch1501
 
Posts: 2177
Joined: Mon Oct 20, 2003 6:50 pm
Location: the debris section

Postby LorentzForce » Sat May 22, 2004 10:38 pm

I learned Perl some time ago; I found out it was WAY too broad for my needs. While I admit Perl is a very useful programming language, it's not quite something most beginner web developers would use. I'd rather people start PHP in earlier years.

Don't forget to learn Perl though; it is indeed very powerful. So powerful most people can't control it properly :P Thankfully, PHP code and Perl code is remarkably similar. Shouldn't take anyone more than few weeks to adjust to the new programming language, and change over from Perl to PHP and vice versa.
Image
User avatar
LorentzForce
 
Posts: 1263
Joined: Sun Jun 01, 2003 3:18 am
Location: Between B and E

Postby Mithrandir » Sun May 23, 2004 3:14 pm

Yup. As long as you realize a few simple things, you'll be fine. For example, I'm glad I learned early on that perl equalities and php equalities don't really work the same way.

php:
Code: Select all
 if ($variable == "oldphilosopher") { print "Welcome, sir!"; }
 


perl:
Code: Select all
 if ($variable eq "oldphilosopher") { print "Welcome, sir!"; }
 


Strictly speaking, perl will complain if you write $variable == "old" and ask if you meant "eq" instead. But then again, I haven't decided which way I like better, yet.
User avatar
Mithrandir
 
Posts: 11071
Joined: Fri Jun 27, 2003 12:00 pm
Location: You will be baked. And then there will be cake.

Postby ThaKladd » Sun May 23, 2004 11:28 pm

You could also try ASP.....
We in our foolishness thought we were wise
He played the fool and He opened our eyes
We in our weakness believed we were strong
He became helpless to show we were wrong
- Michael Card
User avatar
ThaKladd
 
Posts: 355
Joined: Fri Nov 28, 2003 4:41 am
Location: Norway

Postby Mithrandir » Mon May 24, 2004 4:55 pm

ThaKladd wrote:You could also try ASP.....

I was under the impression that you pretty much had to run your own server to use ASP for anything except rudamentary stuff. Are my ITS guys just trying to pull the wool over my eyes on that one?
User avatar
Mithrandir
 
Posts: 11071
Joined: Fri Jun 27, 2003 12:00 pm
Location: You will be baked. And then there will be cake.

Postby ThaKladd » Mon May 24, 2004 11:58 pm

ASP is server based, yes....

The code is kind of similar to Visual Basic.
We in our foolishness thought we were wise
He played the fool and He opened our eyes
We in our weakness believed we were strong
He became helpless to show we were wrong
- Michael Card
User avatar
ThaKladd
 
Posts: 355
Joined: Fri Nov 28, 2003 4:41 am
Location: Norway


Return to Computing and Links

Who is online

Users browsing this forum: No registered users and 112 guests