www.webdeveloper.com

Search:

Type: Posts; User: Charles

Page 1 of 5 1 2 3 4

Search: Search took 0.28 seconds; generated 13 minute(s) ago.

  1. Replies
    7
    Views
    1,013

    Be careful, though, that you aren't just apeing...

    Be careful, though, that you aren't just apeing the old FONT element. Ask yourself why you are using a span. To change the color of a word or two? If you are doing that to add emphasis then use the...
  2. Thread: New to xml

    by Charles
    Replies
    2
    Views
    708

    CSS, no. XSL, yes.

    CSS, no. XSL, yes.
  3. Replies
    2
    Views
    508

    You've declared that the ingredients_list element...

    You've declared that the ingredients_list element contains parsed character data but no ingredient elements. I think that what you want is:
    <!ELEMENT ingredients_list (ingredient *)>
  4. Trouble Using the COM Object with MapWinGIS

    Has anybody had any luck doing that? I'm having variable type issues when I try to open a shapefile.
  5. Replies
    14
    Views
    3,254

    Something called SGML is the parent of HTML, it...

    Something called SGML is the parent of HTML, it defines a grammar but has no vocabulary. HTML is said to be an application of SGML in that it takes that grammar and adds a vocabulary. It is designed...
  6. Replies
    6
    Views
    443

    Tell me about your favorite project to date....

    Tell me about your favorite project to date.
    Tell me about your greatest programming failure.
    Tell me about your greatest programming success to date.
  7. Replies
    24
    Views
    2,468

    Please allow me to suggest that you learn to read...

    Please allow me to suggest that you learn to read the DTD. Much better than the trial and error method with The Validator.

    So, you are willing to use invalid mark up and don't mind if small...
  8. Replies
    24
    Views
    2,468

    Probably not. HTML 5 doesn't exist yet but in...

    Probably not. HTML 5 doesn't exist yet but in HTML 4.01 the HEAD cannot contain a NOSCRIPT and a NOSCRIPT must contain a block level element. META is not a block level element.
  9. See...

    See http://www.w3.org/TR/html401/struct/objects.html#adef-alt for a bit more.
  10. Replies
    3
    Views
    335

    http://php.net/manual/en/control-structures.switch...

    http://php.net/manual/en/control-structures.switch.php
  11. Replies
    2
    Views
    353

    SPANs and other inline elements cannot contain...

    SPANs and other inline elements cannot contain block level elements like P.
  12. Replies
    20
    Views
    1,648

    Let's stop darkening counsel with words without...

    Let's stop darkening counsel with words without knowledge. See http://www.w3.org/TR/xhtml1/#h-4.6 .
  13. Replies
    20
    Views
    1,648

    The current version of HTML is HTML 4.01 and you...

    The current version of HTML is HTML 4.01 and you should be using HTML 4.01 Strict.

    But if you are using XHTML all tags must be closed but you are free to use <br />, <br/> or even <br></br>. Only...
  14. Replies
    2
    Views
    457

    I think that you need to rethink doing this with...

    I think that you need to rethink doing this with regular expressions. Better to use DOMDocument or XMLParser. XMLPArser, which parses HTML as well, will be more work but will offer the more elegant...
  15. Replies
    3
    Views
    1,094

    Completely wrong. HTML is the child of SGML and...

    Completely wrong. HTML is the child of SGML and XHTML is the child of XML. If SGML and XML could be seen as brothers then HTML is the nephew of XML.
    On the other hand you are really comparing...
  16. Thread: Html

    by Charles
    Replies
    3
    Views
    475

    It is properly used to describe the meaning and...

    It is properly used to describe the meaning and parts of a document but it is often misused for designing. Presentation is properly controlled by CSS.
  17. Replies
    8
    Views
    2,809

    I do this all the time. Excel is often the only...

    I do this all the time. Excel is often the only way that I can get people to send me data. If your server is running on a windows box and it has Microsoft Office installed and i you have some server...
  18. Thread: Perl and SHTML

    by Charles
    Replies
    2
    Views
    575

    View Post

    <!--#include virtual="/cgi-bin/example.cgi?argument=value" -->http://httpd.apache.org/docs/current/mod/mod_include.html
  19. Replies
    6
    Views
    822

    It's going to be "place[0]". The JavaScript and...

    It's going to be "place[0]". The JavaScript and the HTML more or less work independently of each other, though they can act on each other. JavaScript can change the HTML and the HTML can call the...
  20. Replies
    4
    Views
    491

    The second one.

    The second one.
  21. Replies
    8
    Views
    1,374

    Use a parser.

    Use a parser.
  22. Replies
    7
    Views
    858

    If you want to use natsort then you have to use...

    If you want to use natsort then you have to use it post processing the query. You can't use it in the query itself. That's perhaps the best way to accomplish what you want but if you want to do all...
  23. Replies
    7
    Views
    858

    My suggestion still stands. Figure out exactly...

    My suggestion still stands. Figure out exactly what it is that you want to order by and then use whatever functions that you need to extract it...and then order by the result.
  24. Replies
    3
    Views
    361

    There are several ways, but do think about your...

    There are several ways, but do think about your request. How would you respond if you customers expected your goods or services without paying? And if they were asking you how to accomplish this?
    ...
  25. Replies
    7
    Views
    858

    ORDER BY CONVERT (SUBSTR(title, 6), SIGNED)Or...

    ORDER BY CONVERT (SUBSTR(title, 6), SIGNED)Or something like that.
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles