Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Coding Forum


You are currently viewing our Coding Forum as a guest. Please register to participate.
Login



Reply
Old 12-11-2009, 12:08 AM Where to start?
Novice Talker

Posts: 7
Name: ej
Trades: 0
Hey everybody,
I know almost nothing about web design but I really want to learn. I have played a bit with Kompozer but that is the extent of my experience. I just don't know where to begin. Which language should I start with. Or do you have any good starting point and a good progression that I should follow.
Thanks in advance.
Mango Matto

Last edited by mango matto; 12-11-2009 at 12:10 AM..
mango matto is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 12-11-2009, 07:43 AM Re: Where to start?
Super Talker

Posts: 139
Name: John Davis
Trades: 0
HTML is most important skill.
additionally to above is CSS.
one more JavaScript

This is all about client side.

According server side you can learn PHP (most popular)
or JSP (if you like Java more then live)
or ASP (if you is fan of Windows only)
or Perl (if you like antiques)
or Ruby on Rails (if you like something unusual)
__________________
»
Please login or register to view this content. Registration is FREE
- Interactive maps for websites
»
Please login or register to view this content. Registration is FREE
for web developers
MapMaster is offline
Reply With Quote
View Public Profile Visit MapMaster's homepage!
 
Old 12-11-2009, 10:54 AM Re: Where to start?
Brian07002's Avatar
Defies a Status

Posts: 2,162
Name: ...
Location: ...
Trades: 0
For a start do this (if your on windows)

Open notepad

Type the following (or copy and paste it) in the notepad window:

HTML Code:
<html>
<head><title>My First Web Page</title></head>
<body>
This is my first web page! Not too fancy, but accurate!
</body>
</html>
...And for your very first php script (note you can't view this until you install a web server)

PHP Code:
<?php
echo "Hello World!";
?>
Notice how in html and php your information is put inside 'Tags' for html you have: To name a few: <html></html>, <head></head>, <body></body> etc, etc..Your code goes between these < > and these < / > note these are < > open tags and these < / > are closed tags

Php tags: <?php ?>

There's alot more, but I'm just giving a few of the very basics

Good Luck in your ventures!
__________________
Made2Own

Please login or register to view this content. Registration is FREE

Last edited by Brian07002; 12-11-2009 at 11:02 AM..
Brian07002 is offline
Reply With Quote
View Public Profile
 
Old 12-12-2009, 10:13 PM Re: Where to start?
Novice Talker

Posts: 7
Name: ej
Trades: 0
Thanks for the information.
What does it mean to install a web server?
mango matto is offline
Reply With Quote
View Public Profile
 
Old 12-13-2009, 09:56 AM Re: Where to start?
Knight13's Avatar
Defies a Status

Posts: 10,289
Name: Knight13
Location: Cleveland, Ohio
Trades: 0
Here is what i learned to get started in web design. and i learned them in this order

xhtml
css
javascript
php
sql
and mysql databases

Once you learn all of this you can make almost any type of website you want, this looks like a lot to learn but its not this is pretty simple once you start to understand it.

You can download a package called wamp that has a web server in it, and you use it to test your php files out, instead of paying for a website.
Knight13 is offline
Reply With Quote
View Public Profile
 
Old 12-21-2009, 11:52 PM Re: Where to start?
Novice Talker

Posts: 14
Trades: 0
You can use one of the many free website builders. If you want just a plain site I recommend www.webs.com or if you want a social website use <link drop removed>

Last edited by chrishirst; 12-22-2009 at 01:52 PM..
jayrob is offline
Reply With Quote
View Public Profile
 
Old 02-05-2010, 02:33 AM Re: Where to start?
Novice Talker

Posts: 3
Trades: 0
Learn basic html and css probably from w3schools and then watch some youtube clips on how to use photoshop and how to cut psds and make them.
sn3twork is offline
Reply With Quote
View Public Profile
 
Old 02-05-2010, 08:08 AM Re: Where to start?
Average Talker

Posts: 29
Name: Jim Morris
Trades: 0
Use W3 school to start with html mate. That's the start
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
topbestph is offline
Reply With Quote
View Public Profile Visit topbestph's homepage!
 
Old 02-05-2010, 05:24 PM Re: Where to start?
Extreme Talker

Posts: 185
Trades: 0
HTML and CSS to begin with. They are very easy to learn. Server side languages are harder to learn. S. language I recommend is PHP. Get the PHP5 and MYSQL bible.
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE
weker is offline
Reply With Quote
View Public Profile
 
Old 02-15-2010, 01:47 AM Celebrity White Teeth
Junior Talker

Posts: 1
Name: nanimair lase
Trades: 0
should i get an external hard drive, if so than what should i load to the hard drive and what do i have to load to my pc,
__________________

Please login or register to view this content. Registration is FREE
nanimair is offline
Reply With Quote
View Public Profile
 
Old 02-15-2010, 02:59 AM Re: Where to start?
lynxus's Avatar
Awesomeo-Maximo

Posts: 1,618
Location: UK
Trades: 1
Quote:
Originally Posted by mango matto View Post
Thanks for the information.
What does it mean to install a web server?
A webserver is a program that runs on a computer that serves webpages to a browser.

Ie: if you had a server running on your PC you would browse to
http://172.0.0.1

And the webserver will run the HTML and PHP files and send them to your browser for rendering.

2 webservers that most people use are:

Apache ( the most popular ) - Runs on Linux, Windows etc.
IIS ( Only works on windows "Its microsofts" )

ID recommend if you run windows to google and install WAMP

This WAMP thing basically will install
Apache ( Webserver ), Mysql ( Database ) and PHP ( Serverside scripting )

You may also hear of something called "Htdocs" this is basically the root folder of your webserver and this is where you put stuff like index.html and your images etc.

The webserver cannot access anything outside of this directory by default.
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE



Last edited by lynxus; 02-15-2010 at 03:01 AM..
lynxus is offline
Reply With Quote
View Public Profile Visit lynxus's homepage!
 
Old 02-15-2010, 10:56 PM Re: Where to start?
SpecHosting's Avatar
Super Talker

Posts: 142
Name: Tanner Bradley
Location: Knoxville Tennessee
Trades: 0
w3schools is an excellent place to start learning HTML and CSS. I would recommend that as it is the basics of almost every website. When you learn this, then you can expand it more languages. You must learn to crawl before you can walk.
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE
Servers Dedicated Servers

Please login or register to view this content. Registration is FREE
Now Offering: FREE WHMCS Licenses|FREE SSL Certificate|End User Support

SpecHosting is offline
Reply With Quote
View Public Profile
 
Old 02-18-2010, 04:31 AM Celebrity Teeth Whitening
Banned

Posts: 1
Name: janiarisee lase
Trades: 0
I don't believe you can do that.

janiarisee is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Where to start?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.48612 seconds with 12 queries