 |
Account Login
|
 |
 |
Latest Articles
|
 |
 |
IRC Channel
|
 |
 |
Associates
|
 |
 |
Associates
|
 |
|
 |
 |
|
 |
01-17-2008, 02:40 AM
|
#1 (permalink)
|
|
The Wanderer
Join Date: Sep 2007
Posts: 8
Thanks: 1
|
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
|
|
|
|
01-17-2008, 03:21 AM
|
#2 (permalink)
|
|
Wizard
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
|
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.
|
|
|
|
01-17-2008, 03:33 AM
|
#3 (permalink)
|
|
The Acquainted
Join Date: Jul 2005
Location: UK
Posts: 121
Thanks: 41
|
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!
|
|
|
|
|
The Following 2 Users Say Thank You to Brook For This Useful Post:
|
|
01-17-2008, 04:06 AM
|
#4 (permalink)
|
|
The Frequenter
Join Date: Sep 2007
Posts: 360
Thanks: 24
|
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
|
|
|
|
01-17-2008, 04:35 AM
|
#5 (permalink)
|
|
The Wanderer
Join Date: Jan 2008
Posts: 7
Thanks: 1
|
+1 for Tizag. I'm currently learning PHP with the help of Tizag, and its pretty easy to understand.
|
|
|
|
01-17-2008, 08:16 AM
|
#6 (permalink)
|
|
The Acquainted
Join Date: Nov 2007
Location: Sweden
Posts: 106
Thanks: 13
|
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.
|
|
|
|
01-17-2008, 12:35 PM
|
#7 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
...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.
|
|
|
|
The Following 3 Users Say Thank You to Wildhoney For This Useful Post:
|
|
01-19-2008, 06:09 PM
|
#8 (permalink)
|
|
The Wanderer
Join Date: Sep 2007
Posts: 8
Thanks: 1
|
Very nice everyone. Thanks a lot
|
|
|
|
01-19-2008, 06:36 PM
|
#9 (permalink)
|
|
The Frequenter
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
|
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"
|
|
|
01-20-2008, 03:15 AM
|
#10 (permalink)
|
|
The Addict
Join Date: Jan 2008
Location: los angeles
Posts: 309
Thanks: 44
|
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
|
|
|
|
01-20-2008, 03:51 PM
|
#11 (permalink)
|
|
how quixotic are you?
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
|
I learned PHP form on-line tutorials. It's not hard to learn at all.
|
|
|
|
01-22-2008, 08:58 PM
|
#12 (permalink)
|
|
The Contributor
Join Date: Jan 2008
Posts: 87
Thanks: 49
|
Quote:
Originally Posted by Brook
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.
|
|
|
|
12-18-2008, 09:20 PM
|
#13 (permalink)
|
|
The Visitor
Join Date: Dec 2008
Posts: 1
Thanks: 0
|
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?
|
|
|
|
12-19-2008, 05:53 AM
|
#14 (permalink)
|
|
The Contributor
Join Date: Feb 2007
Posts: 64
Thanks: 9
|
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.
|
|
|
|
01-06-2009, 03:16 PM
|
#15 (permalink)
|
|
The Wanderer
Join Date: Mar 2008
Posts: 7
Thanks: 2
|
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
|
|
|
|
01-26-2009, 03:21 AM
|
#16 (permalink)
|
|
The Addict
Join Date: Apr 2008
Posts: 200
Thanks: 18
|
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 :)
|
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
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
|
|
|
|