Results 1 to 7 of 7

Thread: upgrade from html

  1. #1
    The Nerd Who Knows Pant Leg Eater from the Bad World's Avatar
    Join Date
    Jul 2005
    Location
    Somewhere New
    Posts
    3,089
    Blog Entries
    3

    Default upgrade from html

    I want to build a website. I know html fairly well, but I want to know more. Not only that, but I want to know more than html. any suggestions on what I should be learning to update/upgrade my skills?

    <PaperStar> live fast, die young, bad plefs do it well

  2. #2
    Banned
    Join Date
    Jan 2002
    Location
    scotland
    Posts
    1,938

    Default

    css, apache, mysql and php are the next steps.

  3. #3
    The Nerd Who Knows Pant Leg Eater from the Bad World's Avatar
    Join Date
    Jul 2005
    Location
    Somewhere New
    Posts
    3,089
    Blog Entries
    3

    Default

    what are those specifically?

    <PaperStar> live fast, die young, bad plefs do it well

  4. #4
    Banned
    Join Date
    Jan 2002
    Location
    scotland
    Posts
    1,938

    Default

    css is for layout. apache is for servers and ftp shenagins. php and mysql are for databases and forms.

  5. #5
    Ominous Wanderer Tech Admin Samuraid's Avatar
    Join Date
    Oct 2001
    Posts
    5,522

    Default

    CSS for fancier visual styles, PHP for dynamic pages

  6. #6

    Default

    XML, css, php, and any database program that works with php is a great start (MySql being one of the easier to use).

    I have honestly stopped using HTML in most my new works. I have switched to xml tags which are the styled by CSS. It's the future mabey? All in all, I love the XML solution over Html or xhtml.

    http://www.sitepoint.com/
    Has some great books with downloadable samples for ya. Download the PHP & mySql one fo sho!

    http://www.w3schools.com/
    has loads of good info for ya too.

    Enjoy!

    quick edit: The xml is teh future was mostly a joke. XHTML will always be around, I just prefer the XML way for certain projects. I would learn em both if I was you!
    Bipper
    Last edited by bipper; 10-23-2005 at 07:30 AM.

  7. #7
    ORANGE Dr Unne's Avatar
    Join Date
    Dec 1999
    Posts
    7,394
    Articles
    1
    Contributions
    • Former Administrator
    • Former Developer
    • Former Tech Admin

    Default

    If you were to pick one to learn first, I would recommend CSS.
    CSS is not only for "fancy styling", it's for cleaner and more technically sound styling. The benefits of CSS are numerous. If you aren't familiar with XHTML standards, I would recommend learning them too. The standards are easy to learn; it's just a certain way of writing HTML. I second the recommendation of http://www.w3schools.com/ as a place to learn.

    Scripting languages like PHP or Perl are not of much use unless you know what kind of HTML/CSS you want to be producing as the final product. To oversimplify greatly, scripting languages are a way to dynamically produce HTML/CSS. Many parts of web pages are duplicate information. A header, a navigation section, a footer. Rather than type those over and over 100 times, you can write a script to produce those sections automatically. Then if you need to make a change to the header section (for example) you change one PHP instead of changing 100 HTML files.

    SQL is entirely useless unless you know a scripting language. PHP or Perl or Ruby or some other language are required to take data out of a database and display it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •