I really want to start being able to make websites
so im thinking about looking into html and php, anyone
have any suggestions on what i should start learning first
and what they code in?
And also if anyone knows of any good online beginners guide that
would be cool ;]
HTML noob here
Started by Salrandin, Oct 23 2007 08:53 AM
14 replies to this topic
#1
Posted 23 October 2007 - 08:53 AM
On C/C++ I use MS Visual Studios 2005 Express (yuck)
On Java I use BlueJ (Rocks!)
On Java I use BlueJ (Rocks!)
|
|
|
#2
Posted 23 October 2007 - 02:12 PM
HTML practically has to be the first thing you learn. To give a crude outline, HTML defines everything you see, the rest provides functions to modify what the HTML originally defined.
An example might be that a text box and a button are defined in HTML then when the button is clicked a PHP function is called to handle whatever is in the text box.
Therefore learn HTML then once you feel competent in making dumb web pages you can look at combining forms with JS and PHP.
An example might be that a text box and a button are defined in HTML then when the button is clicked a PHP function is called to handle whatever is in the text box.
Therefore learn HTML then once you feel competent in making dumb web pages you can look at combining forms with JS and PHP.
#3
Posted 23 October 2007 - 08:40 PM
You may want to look into CSS as well. It makes it easier to handle the design/layout of your website. The syntax is very different from HTML's, but it's easy to learn.
#4
Posted 24 October 2007 - 12:45 PM
alright ill do my best :)
thx!
thx!
On C/C++ I use MS Visual Studios 2005 Express (yuck)
On Java I use BlueJ (Rocks!)
On Java I use BlueJ (Rocks!)
#5
Posted 28 October 2007 - 02:44 PM
Well I would suggest you to stick to an HTMl version (example 4.01) and work on it, follow all it's rules and everything.. start with simple text, then add formatting like header color etc.. then start inserting images, afterwards start using tables and CSS.. can make a pretty cool website of 4+ pages PLUS layout using images etc..in 5 minutes using only notepad.
#6
Posted 30 October 2007 - 06:22 AM
I"m agreeing with every one esle who's posted. HTML first.
I'm an angel. I kill firstborns while their mamas watch. I turn cities into salt. I even, when I feel like it, rip the souls from little girls, and from now till kingdom come, the only thing you can count on in your existence is never understanding why.
-
Do you know how you got that dent, in your top lip? Way back, before you were born, I told you a secret, then I put my finger there and I said "Shhhhh!"
-
Quotes taken from The Prophecy (1995)
-
Do you know how you got that dent, in your top lip? Way back, before you were born, I told you a secret, then I put my finger there and I said "Shhhhh!"
-
Quotes taken from The Prophecy (1995)
#7
Posted 30 October 2007 - 08:04 AM
It's also worth noting that an HTML environment is trivial to set up. The fact that you posted here proves you already have a working interpreter. PHP is quite heavyweight and requires you to set up a web server practically.
#8
Posted 31 October 2007 - 07:20 AM
Along with HTML, you will need CSS and JavaScript (don't use VBscript, as that only runs in IE). Once you can create static pages with those technologies, then you will want to add in PHP to make pages more dynamic. Depending on the task, you may also need to learn SQL so you can have the PHP code interact with a database.
#9
Posted 31 October 2007 - 04:53 PM
Well with JavaScript you will be already experimenting with dynamic pages, but with PHP you will get the real use of them.
#10
Posted 01 November 2007 - 03:32 PM
What has JavaScript dynamic? You mean dynamic as for example displaying the time that changes every time you reload the page.. or something similar?
#11
Posted 01 November 2007 - 03:36 PM
yea I think prolly something like that. no, there isn't as much flexability and changability with JS as you do with PHP but you have more then with just straight HTML
I'm an angel. I kill firstborns while their mamas watch. I turn cities into salt. I even, when I feel like it, rip the souls from little girls, and from now till kingdom come, the only thing you can count on in your existence is never understanding why.
-
Do you know how you got that dent, in your top lip? Way back, before you were born, I told you a secret, then I put my finger there and I said "Shhhhh!"
-
Quotes taken from The Prophecy (1995)
-
Do you know how you got that dent, in your top lip? Way back, before you were born, I told you a secret, then I put my finger there and I said "Shhhhh!"
-
Quotes taken from The Prophecy (1995)
#12
Posted 02 November 2007 - 09:34 AM
JS allows you to fiddle with the DOM of the HMTL page. A plain HTML file is static, JS allows you to modify it on the fly. JS is better at this than PHP but is lacking in other areas.


Sign In
Create Account


Back to top









