hosted by liquidweb


Go Back   Web Hosting Talk : Other Forums : Web Hosting Lounge : Learning PHP or Perl
Reply

Web Hosting Lounge Forum for general conversation, share interests, have a laugh or discuss topics not related to the above or below forums.
Forum Jump

Learning PHP or Perl

Reply Post New Thread In Web Hosting Lounge Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 07-02-2001, 10:15 PM
node9 node9 is offline
Disabled
 
Join Date: Mar 2001
Location: Canada
Posts: 489

Learning PHP or Perl


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

Reply With Quote
Sponsored Links
  #2  
Old 07-02-2001, 10:22 PM
node9 node9 is offline
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 =\

Reply With Quote
  #3  
Old 07-02-2001, 10:25 PM
JTY JTY is offline
Community Guide
 
Join Date: Jun 2000
Location: Washington, USA
Posts: 5,976
Cool

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

Reply With Quote
Sponsored Links
  #4  
Old 07-02-2001, 10:41 PM
ffeingol ffeingol is offline
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

Reply With Quote
  #5  
Old 07-02-2001, 10:58 PM
The Prohacker The Prohacker is offline
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....

Reply With Quote
  #6  
Old 07-02-2001, 11:07 PM
JustinK JustinK is offline
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."

Reply With Quote
  #7  
Old 07-02-2001, 11:15 PM
ffeingol ffeingol is offline
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

Reply With Quote
  #8  
Old 07-02-2001, 11:29 PM
alpha alpha is offline
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

Reply With Quote
  #9  
Old 07-03-2001, 01:17 AM
MCHost-Marc MCHost-Marc is offline
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

Reply With Quote
  #10  
Old 07-03-2001, 01:24 AM
jtan15 jtan15 is offline
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!

Reply With Quote
  #11  
Old 07-03-2001, 01:50 AM
node9 node9 is offline
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

Reply With Quote
  #12  
Old 07-03-2001, 04:56 AM
(SH)Saeed (SH)Saeed is offline
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

Reply With Quote
  #13  
Old 07-03-2001, 06:40 PM
Lonny Lonny is offline
Web Hosting Master
 
Join Date: Feb 2001
Location: I'm right behind you.
Posts: 1,143
heh

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:

Reply With Quote
Reply

Related posts from TheWhir.com
Title Type Date Posted
cPanel & WHM Software 11.36 Reaches Stable Tier Status Web Hosting News 2013-04-09 11:44:33
cPanel Security Updates Address Perl Module Vulnerabilities Web Hosting News 2012-12-06 12:55:54
Softaculous Launches AMPPS Installer Version 1.5 Web Hosting News 2012-01-26 16:52:40
Web Host Liquid Web Donates $10,000 to The Perl Foundation Web Hosting News 2011-09-23 18:45:40
Web Host A2 Hosting Launches QuickInstaller Tool for VPS Plans Web Hosting News 2011-08-19 20:00:53


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement:
Web Hosting News:



 

X

Welcome to WebHostingTalk.com

Create your username to jump into the discussion!

WebHostingTalk.com is the largest, most influentual web hosting community on the Internet. Join us by filling in the form below.


(4 digit year)

Already a member?