Jump to content

EagerWolf

Members
  • Posts

    132
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

EagerWolf's Achievements

Member

Member (2/5)

0

Reputation

  1. So basically it is all about optimization?
  2. I would like my site to be visible as on image below. Please help! [attachment deleted by admin]
  3. Hi there! I was searching trough the net and didn't even now the keywords to search to get the proper result. What I want to do is: URL: smth.com/index.php?action=a&subAction=b And URL after styling should be: smth.com/a/b Thanks for your answers! Best regards, Matija Volk
  4. No idea? Is there any other way to validate XML on schema?
  5. Hehe .. sorry I wrote wrong in forum, but in source code is OK ... any other ideas?
  6. Hello! I've been trying to create XML on schema validation. PHP by itself should supports this option with (Document Object Model - http://si2.php.net/manual/en/book.dom.php) I have XML in string XMLData $vXML = DOMDocument; $vXML->loadXML("$XMLData"); With this code I should be able to load XML from string, but no matter what I try, I always get the following error: Fatal error: Call to undefined method domdocument::loadxml() I've tried with following code as well and the result was the same: DOMDocument::loadXML("$XMLData"); Anybody knows the solution? Thanks for your help!
  7. Hi, I'm running CVS on Linux configured server and looking for CVS server .. Any ideas? Thanks!
  8. Nice thanks for the answer. But the provided URL is accessible only with user name and password.
  9. Hello! I've surfed the internet and find a nice content switcher on www.mimovrste.com. If you go to this web site and wait a moment you will see that the content switcher in the middle will change the current special offers with a nice transition. I've googled to find a script like this with no success. Does anyone know a script like this? Thanks!
  10. So query would be: SELECT * FROM table ORDER by price=0, price
  11. Hi! I am looking for salvation for my complex data ordering in MySQL. I have options: price (price in EURos) and price_1 (ENUM - 0, 1) Example: case1: price = 1400 price_1 = 0 case2: price = 1400 price_1 = 1 case3: price = NULL price_1 = 1 If is price_1 = 0 and price = 1400, than it is printed: 1400 $ The point is if is set price_1 = 1 and is set price (1400), than it is shown like this: Call for price (cca 1400). If price_1 = 1 and price = NULL, than it is printed just Call for price. And what I want to set is that values with price 0 or NULL are listed in the end of results. Let us say we have table like this: ID price price_1 1 1400 1 2 0 1 3 1200 1 4 1300 0 5 800 0 I want output to list me records in order by price with price = 0 in the end. So the proper order would be (by IDs): 5, 3, 4, 1, 2 And records must be stored in the same query... I don't want to make two queries for this. Thanks for your help!
  12. Hehe .. Yup i know there are some silly questions, but I we were all beginners once Ok .. the point is I've tried this as well ... And in all cases I got empty array ... which is confusing...
  13. obviously I am using mysql_fetch_array..
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.