Jump to content

vchris

Members
  • Posts

    1,529
  • Joined

  • Last visited

Everything posted by vchris

  1. You know when you validate an xhtml page with the w3c validator, they give you a link to validate with the xhtml image. This is the code they give: <p> <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a> </p> The link http://validator.w3.org/check?uri=referer doesn't seem to be working in IE7... I've just tested this. It's fine in FF2 but IE7 I get: I guess one of the solutions would be to go with the uri query string. Anyone had this issue before and resolved it without using the query string?
  2. Doesn't seem to work... :S same result as before.
  3. So the server doesn't have 5.2 and it seems like they won't upgrade for a while... So what are my options at this point for xml? Should I just forget it for now?
  4. Since your a novice you say go with transitional, it's easier. Strict is more restrictive over the way you code things.if your page has frames then you use frameset DTD.
  5. wow nice database :)No unique identifier! You should always have a unique id. The names should be in a separate field (first name, last name, middle name). I guess you could compare names and DOB.
  6. vchris

    Importing DB

    We have the db up and running now. Everything works great except an rss feed with had which gave us the 15 most recent posts. It doesn't seem to work anymore... The database is the same, except it's 1 week old.Here is the error we have.
  7. So I guess I got PHP5.
  8. So for testing purposes I don't need to put anything right? It should simply display whatever I put in my xml and xsl files? When I view my php page, the page stops where the xml should appear. The files are in the same folder, file names are correct. I'm not sure what could be wrong. I'm not sure of the php version installed.
  9. What do you mean by //You need to pass each parameter-value pair in the following array as associative array?
  10. I'll only be using this xml for my website gallery. So there will be very little information in the xml file. Just a couple sites. I would prefer having everything in 1 file since it would make updating easier for me. boen_robot: Could you paste the php code to load an xml and xsl doc? I tried last night but it didn't quite work out.
  11. Would anyone that's done this before show me the code. I just want to see how it's done and those examples are kinda complex. I want something real simple.
  12. You forgot text-align:center;
  13. Google is your friendhttp://support.bright.net/homepages/rgbchart.gif
  14. It's an alien face. I can't see your link at work (firewall). I'm shopping for a nice and silent case without any fancy lights and stuff. I'll probably be getting this http://www.lian-li.com/product/product06.p...ex=5&type=a from Lian li.
  15. I got this http://www.nzxt.com/products/nemesis_elite/ but in black
  16. I just got a AMD dual core 4800+, 2GB OCZ DDR2 6400, asus Crosshair MB, EVGA 8800 GTS 640mb... the rest I already had. I also got vista ultimate edition. I don't see how you would need 8gb of ram unless you plan on running somekind of super server and use it as a doomsday device. I say keep your money and stick with 4gb max. I guess you're going to use your new computer for gaming. You should wait before getting vista. There's still some bugs, some drivers aren't available yet for vista and some are not performing as well as in xp. I can only get 2.1 out of my 5.1 soundcard. This is creative's fault, they don't have any drivers yet and could be a couple months. If you wanna get some crazy graphics then just get 2x8800GTX 768mb SLI and probably a FX-62 from AMD, 15K rpm HD, some crazy mobo.
  17. Thanks!Always wondered are the { and } optional in javascript?
  18. I had a question... since my site is bilingual and I have a field in my xml doc that is named desc_e and desc_f. Is there a way I could detect which language is the current page? I will be including the xml doc in my php page.
  19. That would modify all inputs (text, radio, checkbox, buttons) inside of a td element. If you only want to modify button I suggest using a class.
  20. it's a bit more complicated than I thought...EDIT: Does this mean I can use this to display an xml/xsl document? <?php/* load the xml file and stylesheet as domdocuments */$xsl = new DomDocument();$xsl->load("articles.xsl");$inputdom = new DomDocument();$inputdom->load("articles.xml");/* create the processor and import the stylesheet */$proc = new XsltProcessor();$xsl = $proc->importStylesheet($xsl);$proc->setParameter(null, "titles", "Titles");/* transform and output the xml document */$newdom = $proc->transformToDoc($inputdom);print $newdom->saveXML();?>
  21. Or do you know how to get only the filename?
  22. I need to get the language from a file. My files are named bla_e.php and bla_f.php. How can I identify the language in javascript?
  23. Hey does anyone have the font "Century Gothic". I've been searching for it and it seems like I need to buy it. What a bunch of BS. I had it on XP before I got vista and I don't remember how I got it, I know I didn't pay 30$ for it and I don't remember downloading it. So anyway if you have that font let me know! I need it for a website project. I've already done half the work with that font...EDIT: I got it from a buddy. Thanks anyway.
  24. vchris

    Importing DB

    All the tables are erased.
×
×
  • Create New...