1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Let's talk about Love!

Discussion in 'General Chat' started by anthonycea, Apr 3, 2005.

  1. #1
    Well this is an important subject to all coders, web designers, webmasters and portal developers, that being the love of web standards.

    Some folks say that you don't need them because Google does not care for them, others live and die by web standards and accessibility for the disabled.

    Some say that using web standard compliant code that is validated will improve your sites functions and even your search engine rankings, others say it will not.

    What do you guys and gals think about designing to the W3C standards, can we hear from all of you that know something about this so the rest of us can learn.

    http://www.w3.org/

    I have a friend that sets up sites in a way that separates the design from the "code that makes the site work" and merges them to create his pages, he says that they are two separate things. Can anyone comment on what he means by this?

    Could web standards make or break us down the road?
     
    anthonycea, Apr 3, 2005 IP
  2. MELLA

    MELLA Peon

    Messages:
    5,189
    Likes Received:
    267
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I saw the title and was all ready to talk about the wonders of love......

    A little disapointed now...
     
    MELLA, Apr 3, 2005 IP
  3. anthonycea

    anthonycea Banned

    Messages:
    13,378
    Likes Received:
    342
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Well you can always start a competing thread on the real thing Mella, I am sure it would be a hit with the guy and GALS :eek:
     
    anthonycea, Apr 3, 2005 IP
  4. MELLA

    MELLA Peon

    Messages:
    5,189
    Likes Received:
    267
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I might just do that AC.

    I have just finished watching this amazing film called 'The Notebook' and am in somewhat of a Lovey dovey mood.....
     
    MELLA, Apr 3, 2005 IP
  5. minstrel

    minstrel Illustrious Member

    Messages:
    15,082
    Likes Received:
    1,243
    Best Answers:
    0
    Trophy Points:
    480
    #5
    That was a great movie...
     
    minstrel, Apr 3, 2005 IP
  6. nullbit

    nullbit Peon

    Messages:
    489
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #6
    The usual scenario would have three primary layers:

    Application Logic (e.g. PHP) -> Document Structure (e.g. HTML) -> Document Layout (e.g. CSS)

    The idea is to keep the layers separate so that each layer has absolute control over one element of the whole. In the example, if you wished to change the design you only have to edit the CSS (document layout layer).
     
    nullbit, Apr 3, 2005 IP
  7. anthonycea

    anthonycea Banned

    Messages:
    13,378
    Likes Received:
    342
    Best Answers:
    0
    Trophy Points:
    0
    #7
    This is very important and cutting edge web programming, thank you Nullbit :eek:

    It is a hell of a lot different than doing sites on Dreamweaver where all your coding is done for you by the software ;)
     
    anthonycea, Apr 3, 2005 IP
  8. J.D.

    J.D. Peon

    Messages:
    1,198
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    0
    #8
    The reason you need to separate the business logic from the presentation logic is that a web designer can design a website without having to worry where the data is coming from and the application programmer can produce the data without having to worry what color of the font s/he has to choose. For example, the blue text shows how the presentation logic is interfaced with the business logic - the web designer doesn't need to know anything about SQL that run_query uses and the application programmer doesn't even have to know if the result set is displayed in a table or using preformatted text.

    <?php $rs = run_query($_GET["q"]) ?>
    <table class="products">
    <?php while(!end(rs)) { ?>
    <tr><td><?= get_col("product_name") ?></td></tr>
    <?php } ?>
    </table>

    On top of that, separating document structure (HTML) from style (CSS) allows you to control your page appearance from one location - the stylesheet.

    J.D.
     
    J.D., Apr 3, 2005 IP
  9. david_sakh

    david_sakh Peon

    Messages:
    1,225
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #9
    sorry not enough explosions. No Prince of Space either.
     
    david_sakh, Apr 3, 2005 IP
  10. anthonycea

    anthonycea Banned

    Messages:
    13,378
    Likes Received:
    342
    Best Answers:
    0
    Trophy Points:
    0
    #10
    I guess this is what separates the men from the boys in web programming, thanks for the input JD, I guess I will need to hire and partner with programmers the rest of my life because I will never understand how to code in this manner :p
     
    anthonycea, Apr 3, 2005 IP
  11. Solicitors Mortgages

    Solicitors Mortgages Well-Known Member

    Messages:
    2,217
    Likes Received:
    139
    Best Answers:
    0
    Trophy Points:
    103
    #11
    JD is in the very top 0.00001 of internet users...

    ie: those that understand it !!!

    the rest of us wallow in the 'point and shoot' category :(
     
    Solicitors Mortgages, Apr 3, 2005 IP
  12. anthonycea

    anthonycea Banned

    Messages:
    13,378
    Likes Received:
    342
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Don't forget Nullbit and Shawn GEM :p :p :p :p
     
    anthonycea, Apr 3, 2005 IP
  13. miko67

    miko67 Well-Known Member

    Messages:
    769
    Likes Received:
    59
    Best Answers:
    0
    Trophy Points:
    120
    #13
    That's a load of **** my dear anthony...

    As soon as you've plowed your way through a couple of easy to read css tutorials - in the proces of setting up just one mediocre website - you'll have a better understanding of the timesaving involved in seperating content from looks, plus you'll get a much better idea... blah, blah blah.

    C'mon ac, I know you understand it allready. What's with the pretending? :confused::p

    Anyways, JD is very good at explaining it i think. Rep for that.

    Edit: Have to wait a few rounds before giving you any more rep JD :D sry.
     
    miko67, Apr 3, 2005 IP
  14. anthonycea

    anthonycea Banned

    Messages:
    13,378
    Likes Received:
    342
    Best Answers:
    0
    Trophy Points:
    0
    #14
    Miko, we want your input too on this subject, not just these other guys, please tell us what you know and address some of the questions in the opening post :eek:
     
    anthonycea, Apr 3, 2005 IP
  15. Googles76

    Googles76 Peon

    Messages:
    664
    Likes Received:
    26
    Best Answers:
    0
    Trophy Points:
    0
    #15
    I never cared for it really, I ran my site through there and it spits out some errors and I just don't bother to look into it, my site looks fine to the naked eye :rolleyes:
     
    Googles76, Apr 3, 2005 IP
  16. nevetS

    nevetS Evolving Dragon

    Messages:
    2,544
    Likes Received:
    211
    Best Answers:
    0
    Trophy Points:
    135
    #16
    having a design completely independant of code is quite difficult. I think that is the road that we should go down, but it will be several years before a truly simple solution is supported accross all browsers.

    HTML is simple by nature, that's why the web took off the way it did. (believe me it was a heck of a lot better than gopher, FidoNet, etc.)

    Like the early days of HTML, it's real easy to code a simple page with CSS, but now people are used to seeing designs that are more intricate (sp?), and people are loathe to put up pages with simple designs for fear that their target audience will think they are not professional.
     
    nevetS, Apr 3, 2005 IP
  17. david_sakh

    david_sakh Peon

    Messages:
    1,225
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #17
    i think simple designs work. I just keep seem to come up with one like that; I'm asthetically challenged.

    But some simple sites really have it going on. You gotta know your pyshcology of color.
     
    david_sakh, Apr 3, 2005 IP
  18. anthonycea

    anthonycea Banned

    Messages:
    13,378
    Likes Received:
    342
    Best Answers:
    0
    Trophy Points:
    0
    #18
    Please all members that understand web page development/programming, we need your input on this thread!!!! :eek: :eek:
     
    anthonycea, Apr 4, 2005 IP
  19. debunked

    debunked Prominent Member

    Messages:
    7,298
    Likes Received:
    416
    Best Answers:
    0
    Trophy Points:
    310
    #19
    99% of the errors that w3 showed on sites I checked were useless. It was just that w3 didn't know that code.
     
    debunked, Apr 4, 2005 IP
  20. J.D.

    J.D. Peon

    Messages:
    1,198
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    0
    #20
    Can you give an example?
     
    J.D., Apr 4, 2005 IP