Jump to content

L8V2L

Members
  • Posts

    788
  • Joined

  • Last visited

Everything posted by L8V2L

  1. L8V2L

    Magic in arrays

    Thanks for the link. From what I have read, it sound a lot like xml, and json.
  2. Have you ever try this: raycaster scratch way
  3. ... That is my answer.... Posting this here want to much of a chance to reply. I know these forum... Matter fact, I'm the one that conteibute the most in the XML section. I'm telling you that you that you will get a hm higher percent chance of an reply posting this in the php section, even the html, or web service section. But do what you want with that attitude.WHOLE CRUD GUYS LOOK AT THESE TYPOSREDO:... That is my answer.... Posting this here won't give you much of a chance to reply. I know these forum... Matter fact, I'm the one that contribute the most in the XML section. I'm telling you that you will get a higher percent chance of an reply posting this in the php section, even the html, or web service section.
  4. if your a web developers, that bound to be your first language you learn.Espically saying them side by side. Do you also server script? What language is that?
  5. What's the first programming language you learn?
  6. Post this in the php section. You're not looking for help on the actually xml file, but on the php.
  7. L8V2L

    Magic in arrays

    var table;table = [];table["row0"] = [];table.row0[0] = {car:"01"};table.row0[0].car;/*i can understand your argument on querying this, but there are querying tools for querying, i.g.: JSONiq*/
  8. L8V2L

    Magic in arrays

    So like this: relational database model
  9. With jss, it's very low level api. you work closely with the kernel. But it seem with php it's like js in the browser.
  10. L8V2L

    Magic in arrays

    Where going to go with it's just magic. So with that logical. having a containing a million elements would be easy to go through with out iterating through them with just using the key to access the element you want. So if you have an variable containing million array; which of those array in that array are named index, and they contain objects. So... So how the SQL query relational database data?
  11. Hm... That make it sound easier to program with... What about setting up process? Don't you pass in command for them to the shell--Am I using this term correctly?--?
  12. What unix command do you mostly use when programming server side? (o_o) PHP (Y_Y)I'm finally here... YU GI OH~! Let's dual! (>_<) THIS POWER!!!!! AWWW!!!!
  13. L8V2L

    Magic in arrays

    davej kinda answer the question. I ask what is the mechanism behind retrieving arrays elements via there keys? Does it iterate, or is it magic... please look over my other post for more detail. This is just the jus--could someone spell this word right for me-- of it.
  14. L8V2L

    Magic in arrays

    I understand what your saying, but that last part is incorrect... at least by the test that I have giving above. Copy and paste that in the console. And you'll get the answer that is commented in my post. So going by that, Array can have name properties. It's not recommended to use it as so. But it is not illegal to do so. Array can have name properties too, and still have their constructor pointing to array.
  15. L8V2L

    Magic in arrays

    You're mostly right... Wouldn't JSON be faster than? Dropping in the key and getting a return value, plus, you can set up JSON to be map as a tabular database via either arrays or objects.
  16. (@_@) davej! One of the wizard of invisionzone! As well as a moderator is posting a question!!!! By the gods of the web! What's to befall us all! (¥_¥)
  17. Don't you have to left click to download? -- even know there is the manual menu to do so too.--Can't he disable the left click function? I have been on sites that wizard had rigged that had my mouse go one way when I tried to go another way, while my cursor was up side down. <= I feel like I could have taken this last part out.
  18. I argee. Site should be simple. You can discourage the user from visiting again. It's nice to wow your user, but don't wow them with every click of the button.
  19. L8V2L

    Magic in arrays

    And just to make sure you know, I went to the link. Thanks for the enjoyable read!--I I very much enjoy going back over the material...--
  20. L8V2L

    Magic in arrays

    /*|*|... True since arrays are objects. |*|But array number |*|index are actually string |*|index via the ECMAScript spec. And |*|also array can have name |*|properties i.g.:*/var arr;arr = new Array("0","1","2");console.log(arr.constructor === Array); //truearr['num'] = '3';console.log(arr.constructor === Array); //truearr[3]; //in most case, undefinedarr["num"]; // the string 3arr.num; // the string 3/*|*|but this is still not what I'm|*|refering to! Do arrays iterate|*|to the key/value pisition? |*|does it iterate to index 3 |*|when arr[3], or is it magic?|*|same goes for non-numeric |*|properties. i.e.: arr["num"].*/
  21. L8V2L

    Magic in arrays

    ... It's the key to getting the value I'm referring to. Not ths actually index number. It could have been arr["foo"] = "bar";
  22. L8V2L

    Magic in arrays

    No... Why did you post a link to a php for loop?I'm speaking on this:var arr = new Array(100);arr[arr.length] = "elem";arr[101]; //elemDid it iterate to the value or is it magic--in the sense that the key "101" brought the value "elem"--
  23. Does a arrays iterate in there index to get the value for the key? Is it some look up and search?Or magic?
  24. L8V2L

    Database

    JSG, yes, you're right, I'm making things complicated for myself.... So... I know it depend on my needs and what's better suit me.But people have been using relational database when it would have been better to use oriented database. I'm more so pointing at the time when NoSQL didn't exist. So with that said, I should be okay with XML native database...I'm going to use a native XML database for everything. User, and my webpage.But I'mma also play with JSON database and SQL database too, so I can have that under my belt.How does that sound?
×
×
  • Create New...