
07-02-2001, 10:15 PM
|
|
Disabled
|
|
Join Date: Mar 2001
Location: Canada
Posts: 489
|
|
Hi everyone. I hope this is the right place to post this. I really have been meaning to learn PHP or PERL. People say PHP is easier to learn, I really need to learn it, so i can better myself. The problem is, I don't know any PHP at all. I am starting at point 0,0.
I need something, like, a guide, online that'll take me step by step, showing me the most basic things, then showing me examples. then moving on. Something lik ethat, i hate learning new languages.
Can anyone recommend any URL's? any online guides, tutorials, something.
someone please help
-node
|

07-02-2001, 10:22 PM
|
|
Disabled
|
|
Join Date: Mar 2001
Location: Canada
Posts: 489
|
|
I just find that programming is very hard for me to learn. However I am good at sys admin stuff, it's weird.
I look at like, a piece of code, or something, like this
#!/bin/bash
x=1
for i in *;d
mv "$i" "viper-$x.jpg"
x=$(expr $x + 1)
done
i look at that and wonder what does expr mean
and why do you write expr. WHY not something else, why do you put it there
why not somewhere else
stuff like that man
When do you konw when to put it, stuff like that is why i dont understand programming. I wouild need somethign to tell me step by step.
I mean, i know that was not php or perl, but that was just an example, and yes, i do know what it does. Just boggles me at how things work, why that way, and how do you know when to do certain things.
someone help =\
|

07-02-2001, 10:25 PM
|
|
Community Guide
|
|
Join Date: Jun 2000
Location: Washington, USA
Posts: 5,976
|
|
Programming can be a pain, I use to know Perl quite well.
As for tutorials on php, go to http://www.php.net/ they have some links.
Somewhere around my house I've got a Perl CGI tutorial.
__________________
John T. Yocum -- Fluid Hosting
Shared - VPS - Dedicated - Colocation
|

07-02-2001, 10:41 PM
|
|
Community Guide
|
|
Join Date: Jun 2001
Location: Earth
Posts: 1,246
|
|
I liked "PHP Essentials" by Julie C. Meloni. I new programing already, so it was a good reference. We also have some reference links on Webmasters Resources.
Frank
__________________
█ Umbra Hosting
█ cPanel | Softaculous | CloudLinux | R1Soft | Ksplice
█ Web Hosting, Reseller Hosting, VPS, Dedicated Servers, Colocation
█ UmbraHosting.com
|

07-02-2001, 10:58 PM
|
|
iNET Interactive
|
|
Join Date: May 2001
Location: Dayton, Ohio
Posts: 4,869
|
|
PHP is my latest lang. to learn, so far been 5 months, doing fairly well, already have a background in perl/c, and a few others. I just grabbed several scripts off of hotscripts.com and looked at them and figured it out,
http://www.php.net/manual/en/
May help ya some....
|

07-02-2001, 11:07 PM
|
|
Web Hosting Master
|
|
Join Date: Jul 2000
Posts: 654
|
|
Once you learn one you'll be able to kind of melt into the other one (with a few adjustments). For anyone starting perl (and I do mean starting), I recommend "PERL AND CGI FOR THE WORLD WIDE WEB" a Visual Quickstart Guide by Elizabeth Castro.
Keyword here: VISUAL.  It goes through snippets and tells you what each part does. It is for a beginner though and actually tells you each thing to type (line by line).
I'm getting started into php myself. I've got a php4 book from wrox, a core php programming book, and there's bound to be another one laying around here somewhere. Then for perl I have the book mentioned above, Perl Cookbook (Oreilly), and "Professional Perl Programming" by Wrox. Yes... I went to one of those discount online bookstores and got a little carried away, but I have some good reference material now. 
__________________
Justin K.
"Error: Keyboard not found. Press any key to continue."
|

07-02-2001, 11:15 PM
|
|
Community Guide
|
|
Join Date: Jun 2001
Location: Earth
Posts: 1,246
|
|
Another easy thing to do is to go to a place like http://www.hotscripts.com and just download a few scripts. I think it's pretty easy to learn PHP/Perl by just looking at other peoples code.
__________________
█ Umbra Hosting
█ cPanel | Softaculous | CloudLinux | R1Soft | Ksplice
█ Web Hosting, Reseller Hosting, VPS, Dedicated Servers, Colocation
█ UmbraHosting.com
|

07-02-2001, 11:29 PM
|
|
Web Hosting Master
|
|
Join Date: Dec 2000
Location: East Coast
Posts: 1,732
|
|
if you are a HS student... look for a computer science class and take it
in most cases, they'll teach you c++ which has exactly the same syntax as php (some differences but not alot) but differences in function names...
now, perl... i dunno how you get started in perl... i've been using c++ for couple years now with a 4 year background in visual basic... the transfer from vb to c++ was pretty easy (probably cause i was young and wanted to learn everything)... and from c++ to php was super great  but when i looked toward perl, it was a challenge.. i still have difficult programming in perl and i try to avoid it as much as i can
my recommendation: if you have no previous programming background... then get yourself either in a class or a book. you just need to understand syntax and semantics and you should be good to go
g'luck
__________________
██ John Han @ atomicVPS LTD
██ · OnApp Powered Linux & Windows Cloud Hosting ► [Shared] ► [Reseller] ► [VPS]
██ · Featuring the atomicSTACK™ engineered for Speed, Performance, and Stability
|

07-03-2001, 01:17 AM
|
|
Web Hosting Master
|
|
Join Date: May 2001
Posts: 2,129
|
|
I know both Perl & PHP and i have to say that PHP was easier to learn. There are lots of books that can teach you. I have all my books at the office, but i will send you the titles of them tomorrow 
__________________
Marc Wyss - marc@mchost.com
MCHost Inc - Experts in Private Label Reseller Plans
http://www.mchost.com
|

07-03-2001, 01:24 AM
|
|
Aspiring Evangelist
|
|
Join Date: Jul 2000
Posts: 382
|
|
Quote:
Originally posted by JustinK
For anyone starting perl (and I do mean starting), I recommend "PERL AND CGI FOR THE WORLD WIDE WEB" a Visual Quickstart Guide by Elizabeth Castro.
|
Yes, that is a pretty good book. It teachers perl as you would use it for web pages ... form submittion, getting information about browsers, etc.
I think one of the best books you can find for Perl is "Programming Perl" by Larry Wall (the creator of Perl), Christiansen & Schwartz. It is published by O'Reilly, and has a Camel on the front cover.
Once you've got some of the perl basics down, another good book is "Perl Cookbook", again published by O'Reilly. This one is by Christiansen and Torkington.
Good luck! 
|

07-03-2001, 01:50 AM
|
|
Disabled
|
|
Join Date: Mar 2001
Location: Canada
Posts: 489
|
|
thank you everyone for your replies and useful information
I will check out the book titles and links you have given me
thanks again
-node
|

07-03-2001, 04:56 AM
|
|
Web Hosting Master
|
|
Join Date: Dec 2000
Posts: 1,280
|
|
I have been coding Perl/CGI for about 6 years now, and some other languages before that. The last few months I have been using PHP4. I would recommend you to learn PHP4, since it is written for the web. It has a lot of functions that make things easier for the web and database applications. You also have a very good and complete online manual at www.php.net
Since you're just starting, I would suggest you getting a newbies book that explains to you how things like "if", "while", "for", etc works. Once you get the basic knowledge, you can start learning any language you want.
However, if you rather like to learn Perl/CGI, then I recommend the book "Learning Perl" by O'reilly. It is a great book that explains Perl from the beginning. This book is highly recommended (not just by me) to anyone interested in learning Perl.
Good luck.
__________________
Saeed Sarvi
|

07-03-2001, 06:40 PM
|
|
Web Hosting Master
|
|
Join Date: Feb 2001
Location: I'm right behind you.
Posts: 1,143
|
|
Good luck with that, I never knew how to program, and I hate everything related to programming and computers in general  but hey you gotta make a living somehw right?
try searching for tutorials on my site:
http://www.findtutorials.com
don't worry it's not SPAM we're getting 300,000 uniques per month and not looking for a few extra users making posts on the forums for that
anyways, go to the PHP and perl category in the web
development section
Good luck
__________________
Marketing For Hosting Companies:
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
| Postbit Selector |
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|
|
| Login: |
|
|
| Advertisement: |
|
|
| Web Hosting News: |
|
|
|