Search results

  1. B

    Vending Machine (Game)

    you get a living cat I insert speed racer
  2. B

    Support not terminated

    ok problem solved
  3. B

    Support not terminated

    I'd like you to terminate a support request made a while ago that was solved and not terminated. It is here: http://x10hosting.com/forums/level-two-support/83174-logging-problem.html
  4. B

    iTrader Added

    how do we access Itrader?
  5. B

    Help simplifying a php script to lower server resources

    Yet for insert it must be a query for each line?
  6. B

    Help simplifying a php script to lower server resources

    The variable $ally is only defined where you can spot it, no where else. Wings is an array separated by ";" Edit: $ally=explode('; ', $result); this is the value of $ally to know the value of $result go to http://s1.travian.pt/map.sql or http://s2.travian.pt/map.sql or...
  7. B

    PHPBB & Cutenews error

    there is no line 20... if //---------------------------------- is the page 15 then there is nothing in the line 20
  8. B

    Help simplifying a php script to lower server resources

    Ok I have this php text: There is already coding that start the db connection. There are already some variables defined Ok This code is completely functional but it uses a lot the mysql_query(). I'd like to ask for your assistance to help me reduce the server load without lowering the...
  9. B

    Vending Machine (Game)

    You get a Linux I insert a screen
  10. B

    My computer isn't reading DVD's

    Ok I fixed it. I wasn't remembering but it seemed like that uninstalling and installing the drive solved the problem. I remembered that while I was reading about upgrading the drivers. Thx for trying to help everyone Edit: oh, it seems like I cannot close the thread, so I say: You may close the...
  11. B

    [php] Help with a parsing program

    so it seems like to find the number after "title="Paliçada nível" is must be: ^title=\\"Paliçada nível[:space:]$^[0-9]$^\"$ And with preg_match_all() the start sting will be: title="Paliçada nível 12" I'll get: [1]title="Paliçada nível [2]12 [3]" in the variable, is this right?
  12. B

    [php] Help with a parsing program

    could you please help on that regular expressions so that I could find the text I need? I don't know why but I can't understand them. After I know how to write the regular expressions to use I can make the rest of the code with ease
  13. B

    [php] Help with a parsing program

    hi, I'd like to make a code in order to search for keywords in a huge text. It works like this: I prompt for a big text from the user. the program must find the exact text: then a number between 0 and 20. after that there is a Also, the text may not exist, if that happens it just ignores it...
  14. B

    My computer isn't reading DVD's

    Hi I cannot make my computer to read DVD's. I insert the DVD and it doesn't detect it. It's a DVD +-RW/+-R DL drive. What may be wrong? It can read and burn CD's without any problems!
  15. B

    MYSQL help

    no problemo ;) there's just the need to use addslashes () Function. like: VALUES ('addslashes ($firstname)', 'addslashes ($message)')"); That would solve the problem edit: I just found the instructions for this. It's right here http://php.net/manual/en/function.addslashes.php
  16. B

    Vending Machine (Game)

    you get a HDD drive (with 800MB of memory) I insert a CRT monitor
  17. B

    MYSQL help

    I don't think so. In PHP it has no problem but it must be usable so there is an other option. change the '' to `` that should do the trick
  18. B

    MYSQL help

    Oh! And don't forget the OR Mysqlerror(); it's useful to find sql syntax errors
  19. B

    MYSQL help

    why not instead of: $submit=$_POST['submit']; if($submit=="Submit"){ you use this code? if($_POST['submit']=="Submit"){ Makes the code simpler :) Edit: the simpler it is the less probable is for you to get an error ;)
Top