TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 01-17-2008, 02:40 AM   #1 (permalink)
The Wanderer
 
conrad's Avatar
 
Join Date: Sep 2007
Posts: 8
Thanks: 1
conrad is on a distinguished road
Default Absolute Beginner Explains Me!

Well at coding, I'm an Absolute Beginner, I know some basic HTML but thats it..

My Question?!?!
- What kinda route should I take to learning coding, from html - css - php - other languages..

or what kinda order?

This year I plan on learning php and other languages .

thanks
conrad is offline  
Reply With Quote
Old 01-17-2008, 03:21 AM   #2 (permalink)
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

HTML and CSS are your best options to start with, learn them together. Tizag Tutorials is a good resource for all your tutorial needs, anything passed that google is good for.
__________________

Village Idiot is offline  
Reply With Quote
Old 01-17-2008, 03:33 AM   #3 (permalink)
The Acquainted
Inquisitive 
 
Join Date: Jul 2005
Location: UK
Posts: 121
Thanks: 41
Brook is on a distinguished road
Default

When you come to PHP, I found PHP Video Tutorials to be quite helpful.

And if you can, get a book too (I think there is a thread about good php books here too somewhere).

Good Luck!
__________________
PS3 Forums on GameSlurp - the site for gaming fans!
Brook is offline  
Reply With Quote
The Following 2 Users Say Thank You to Brook For This Useful Post:
sarmenhb (01-20-2008), StevenF (01-22-2008)
Old 01-17-2008, 04:06 AM   #4 (permalink)
The Frequenter
Prolific Welcomer Upcoming Programmer 
 
Join Date: Sep 2007
Posts: 360
Thanks: 24
Haris is on a distinguished road
Default

I recommend Tizag. I've learned almost all the basic things from Tizag. I still use Tizag as a reference.
__________________
Necessity is the mother of invention.

My blog
Haris is offline  
Reply With Quote
Old 01-17-2008, 04:35 AM   #5 (permalink)
The Wanderer
 
PixelDawn's Avatar
 
Join Date: Jan 2008
Posts: 7
Thanks: 1
PixelDawn is on a distinguished road
Default

+1 for Tizag. I'm currently learning PHP with the help of Tizag, and its pretty easy to understand.
PixelDawn is offline  
Reply With Quote
Old 01-17-2008, 08:16 AM   #6 (permalink)
The Acquainted
 
EyeDentify's Avatar
 
Join Date: Nov 2007
Location: Sweden
Posts: 106
Thanks: 13
EyeDentify is on a distinguished road
Default

Think of it this way:

HTML, XHTML and CSS for the layout(visual) part of the website.
And the PHP, MySQL, JavaScript and whatnot for the interactive part of the site.

Good luck in your webdesigning days!

/EyeDentify
__________________
Of course the whole point of a doomsday machine, would have been lost if you keep it a secret.
EyeDentify is offline  
Reply With Quote
Old 01-17-2008, 12:35 PM   #7 (permalink)
La Vida es Sueño
Advanced Programmer Top Contributor 
 
Wildhoney's Avatar
 
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
Wildhoney is on a distinguished road
Default

...And Javascript is client-side and so can be a bit of a pain like cross-compatibility in HTML. One of the functions that really sticks out with its bad cross-compatibility is the add function for select fields, but thankfully Javascript has support for try and catch blocks and so it's really quite simple:

javascript Code:
pSelect = document.getElementById('mySelect');
pOption = document.createElement('option');

pOption.innerHTML = 'This is my option';

try
{
    pSelect.add(pOption, null);
}
catch(pEx)
{
    pSelect.add(pOption);
}

You have to do that because Internet Explorer doesn't support the second argument, whereas all other browsers requires you at least to set it to null.

With the increasing popularity of Javascript frameworks such as Prototype and jQuery, browser incompatibilities, such as class and className, as well as CSS opacity in JS, are all relatively easy to overcome by using the functions from the frameworks which try their utmost to increase that compatibility. They do this by simply by wrapping our try and catch block above in a function of their own which we can then call without a try and catch block and have it work perfectly.
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
Send a message via AIM to Wildhoney Send a message via MSN to Wildhoney Send a message via Yahoo to Wildhoney
Wildhoney is offline  
Reply With Quote
The Following 3 Users Say Thank You to Wildhoney For This Useful Post:
conrad (01-19-2008), hello-world (02-15-2009), SOCK (01-18-2008)
Old 01-19-2008, 06:09 PM   #8 (permalink)
The Wanderer
 
conrad's Avatar
 
Join Date: Sep 2007
Posts: 8
Thanks: 1
conrad is on a distinguished road
Default

Very nice everyone. Thanks a lot
conrad is offline  
Reply With Quote
Old 01-19-2008, 06:36 PM   #9 (permalink)
The Frequenter
 
ReSpawN's Avatar
 
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
ReSpawN is on a distinguished road
Default

If you're getting your feet into it all, you can start off trying to some easy stuff like mySQL and PHP combined. I found, just as the rest, Tizag to be a great help.

Next to that, I read a lot of articles from here, experimented a LOT and of course, followed some tutorials from tutorialized.com.
__________________
"Life is a bitch, take that bitch on a ride"
Send a message via MSN to ReSpawN
ReSpawN is offline  
Reply With Quote
Old 01-20-2008, 03:15 AM   #10 (permalink)
The Addict
 
sarmenhb's Avatar
 
Join Date: Jan 2008
Location: los angeles
Posts: 309
Thanks: 44
sarmenhb is on a distinguished road
Default

i'd say learn html and not too much on css and jump into php then after php you can go back to css and all that other stuff.
__________________
no signature set
sarmenhb is offline  
Reply With Quote
Old 01-20-2008, 03:51 PM   #11 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

I learned PHP form on-line tutorials. It's not hard to learn at all.
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 01-22-2008, 08:58 PM   #12 (permalink)
The Contributor
 
Join Date: Jan 2008
Posts: 87
Thanks: 49
StevenF is on a distinguished road
Default

Quote:
Originally Posted by Brook View Post
When you come to PHP, I found PHP Video Tutorials to be quite helpful.

And if you can, get a book too (I think there is a thread about good php books here too somewhere).

Good Luck!
Just had a look at those, currently at the 4th one, thanks a lot for that! The guy suddenly starts talking about random stuff though lol.
StevenF is offline  
Reply With Quote
Old 12-18-2008, 09:20 PM   #13 (permalink)
The Visitor
 
Join Date: Dec 2008
Posts: 1
Thanks: 0
horsebrush is on a distinguished road
Default

Hi,

I am a rank beginner, know a little HTML and PHP.

I inherited a website, www.planttox.com, from students who are now on to other things. Among all of those .php and a few other kinds of files do I start to understand this thing. I see CSS and Codeignigter and MySqL etc.

What is the first file the php program goes to to put up the home page?
horsebrush is offline  
Reply With Quote
Old 12-19-2008, 05:53 AM   #14 (permalink)
The Contributor
 
Join Date: Feb 2007
Posts: 64
Thanks: 9
Killswitch is on a distinguished road
Default

I started with the basic tutorials like those found on Tizag. I found a few Ebooks to read in my freetime and immediatly started to write what I was learning, using it in anyway possible.

I also checked out other tutorials from Pixel2Life.com and various other sites, just to see how people were using code to get certain tasks done. It helps you understand the dynamics of performing certain tasks and using built in functions.

One thing - never copy and paste code. It will not help you learn, it will only impede the learning process. Write what you see, and eventually work on adding your own little scraps in, even if it doesn't do anything special. You will start to understand the syntax a lot quicker.

Most importantly, stick with it. It seems hard and complicated at first, but it will eventually come together. I remember when I first started learning I thought I would never figure the language out. And sure, there are some things I don't have experience with, but that's what the PHP manual is for. Once you have a good understanding of the language and can do basic things, head over to the manual, sift through things you've never worked with ( like for me, I am trying to focus on learning all the built in array functions and their purpose ) and try them out, writing code to work with them.
Killswitch is offline  
Reply With Quote
Old 01-06-2009, 03:16 PM   #15 (permalink)
The Wanderer
 
Join Date: Mar 2008
Posts: 7
Thanks: 2
Face_Of_Boe is on a distinguished road
Default

This is a good css tutorial click here
Note: you do not need dreamweaver although the tutorial is based on it daniel shows how it can be done in code.

just a tip: start of with the easy ones html and css if you know those php becomes easyer to understand (just my opinion)
__________________
I think a second Email would count as spam so I would like to thank the person that reseted my pass :D
Face_Of_Boe is offline  
Reply With Quote
Old 01-26-2009, 03:21 AM   #16 (permalink)
The Addict
 
zxt3st's Avatar
 
Join Date: Apr 2008
Posts: 200
Thanks: 18
zxt3st is on a distinguished road
Default

HTML, XHTML, CSS are the better things to start learning off first.

There are also good tutorials here: http://w3schools.com

Have a great journey :)
__________________
Serenity Project - 5% (Layout) - Ongoing....
Project Serenity Free Life!....
zxt3st is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 10:18 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design