Search results

  1. mattura

    Arrrrr!

    Here they be explainin everythin: http://en.wikipedia.org/wiki/International_Talk_Like_a_Pirate_Day
  2. mattura

    What is better and more effecient the direct x series or the OpenGl series

    Well yep, Nathan H said it much better than me!
  3. mattura

    Insert records from a local csv file

    well your insert columns and values need to match for a start: $fnam=?; $lname=?; $comp=?; INSERT INTO `test` (`firstname`,`lastname`,`company`) VALUES ('$fnam','$lnam','$comp'); I'm not sure about the state of your array when you are in that loop, so I put question marks. It may be $value[0]...
  4. mattura

    Arrrrr!

    Oh yes, I had forgotten! Yearrrgh!
  5. mattura

    Table not rendering in IE

    Probably a good idea to use the w3c validator, it can find all manner of (easy to fix) problems.
  6. mattura

    flash move clip instance to be a number

    Are you trying to add icons? Use the code below and add to their array (items) in the same manner (with id and label) Then add a case to the switch statement for each of your new labels
  7. mattura

    Php Help

    It doesn't work because you set s=0, then test if s==0!!!! Also, you need $ sign for variables, and semi colons $s=1; while($row = mysql_fetch_assoc($result)) { if($s==1) { my code.... $s=0; } else { my code... $s=1; } }
  8. mattura

    What is better and more effecient the direct x series or the OpenGl series

    DirectX has more optimisation OpenGL is focussed on being open and multi platform etc, so anyone can use it. So some optimisations cannot be performed. So DirectX is faster
  9. mattura

    Word Assoation Game

    Frustration > Cadets (don't ask...)
  10. mattura

    What do you spend?

    I was wondering, what in terms of percentage of salary (if you have one) do you spend on various things - such as: Clothes Music Films/tv subscriptions computer equipment a formal night out (eg ball/prom) a casual night out (bar with mates etc) your other half/dating hobbies/sport...
  11. mattura

    Science evolving into Religion?

    Well, your post presents a standard argument, not really much to say about that. As for the soul, I believe if it had weight, we would be able to find it as matter, therefore it does not have a weight. PS sorry, they were the post above yours, ie 2 above mine
  12. mattura

    javascript alert message problem

    Yep those scripts were the problem. I'd suggest replacing the Date script with the following (much shorter) php: <?php $dat=date("D jS F Y"); echo "<font color='#BBD6EC' face='Palatino Linotype'><b>$dat</b></font>"; ?> look up the date() function for additional information
  13. mattura

    Are there any online games available?

    'Are there any online games?' -yikes, where have you been living in the past ten years? The ones people have mentioned have all been big, full screen jobbies, so I thought I'd mention that there are plenty of little games, largely free, often built in Flash (so google 'flash games'), and they...
  14. mattura

    Java scripting

    give us an outline of you sql database with this info, then maybe we can help.
  15. mattura

    [Game Programming] Highlander

    Well, good luck, I'd really recommend you start with a small, playable game, and then add the graphics and stuff. Or it will never get finished. [shudders remembering opengl experience...]
  16. mattura

    Hash? Or something similar..,

    just choose your data types carefully and let the database worry about compression! If there is a yes/no question, use binary, if a number, use int etc You should have a key in the database, then the users can copy/paste that key, and all their info will be retrieved. The key can be an md5 if...
  17. mattura

    javascript alert message problem

    Yep, try removing all other javascripts first, then when you add them, if they break it, you know where the problem is! If the following code is on your page, without any other script, it will work: <head> ... <script type="text/javascript"> function message() { alert("Welcome"); } </script>...
  18. mattura

    Science evolving into Religion?

    Yes, these are the guesses I'm referring to how do we know this for sure? Correct according to our test equipment only. And on the level of particle physics, it is very difficult to get reasonable test equipment! I think that might have been phrased incorrectly... there are chemical changes...
  19. mattura

    What is the Best AntiVirus?

    Yep, I'd mostly agree, although I don't know about BitDefender. ps - it's Norton, not Nortorn
  20. mattura

    The Ctrl+V game

    Array(1068,1,0),Array(1878,1,0),Array(2806,1,0),Array(3875,1,0),Array(4876,1,0),Array(5851,1,0),Array(6800,1,0),Array(7848,1,0),Array(8844,1,0),Array(9885,1,0),Array(10867,1,0),Array(11842,1,0),Array(12864,1,0),Array(13859,1,0),Array(14861,1,0) *damn flash programming!
Top