Search results

  1. Heaplink

    Help please?

    By learning MySQL. But joke aside; What you need is to create a web_build column in a table. I don't know what table is the problem, you would have to either give me that information or debug it yourself. When you've found your table, you can also make a query: ALTER TABLE (your table)...
  2. Heaplink

    Non-local Online Users Script -- Evaluate my Code

    Next... This is the errors: - PHP inside HTML markup (unless you really wan't to echo HTML, but I recommend NOT to do it) - The content does not go into HTML tags, it goes in body tags (google for a HTML5 template) - Use require_once to make it faster, and more stable (include will include a...
  3. Heaplink

    Non-local Online Users Script -- Evaluate my Code

    Ok so.... Never, ever in your whole life from now on use regular expression to parse HTML. It's not only slow and inefficient, but you kill a baby seal every time you do it. Use this instead
  4. Heaplink

    Guess who's back...

    Donkey were you bad in bed?
  5. Heaplink

    [PHP]Check all POST's or GET's.[PHP]

    You don't need to use array_key_exists It will exist, if it in there, but check if it is a callable (function). This way you can have anonymous functions in your array. Note: This is not the proper way of making a router, also consider using $_REQUEST instead. $requests = array(...
  6. Heaplink

    [REQ] Habbo Fansite Layout free? [REQ]

    If you give me $400 I can not only make a unique template and code it, but also make a fully functional website with backend. But that is only if you give me $500
  7. Heaplink

    What kind of car do you/your parents drive?

    A freaking Volkswagen up!
  8. Heaplink

    Where's RastaLulz?

    Yeah that one guy out of the 20 others.
  9. Heaplink

    Where's RastaLulz?

    The guy behind the face in the front with the hat.
  10. Heaplink

    Where's RastaLulz?

    Either of these two - Second guy mostly
  11. Heaplink

    Show DevBest ScribbleTube 0.1 first release.

    I am not saying VB is hard. What I am saying is the syntax is so horrible that you WILL forget about other syntax'
  12. Heaplink

    Show DevBest ScribbleTube 0.1 first release.

    Just stick with either the latter, seriously. You will find yourself struggling to remember the name of a function/void... you would think it was a Sub.
  13. Heaplink

    Show DevBest ScribbleTube 0.1 first release.

    How I know it? Because I have been there.
  14. Heaplink

    Show DevBest ScribbleTube 0.1 first release.

    VB will kill your already learned experience with C-like languages. It is horrible, it kills souls.
  15. Heaplink

    Show DevBest ScribbleTube 0.1 first release.

    In my opinion I recommend you to stick with C++. VB is not worth it, trust me.
  16. Heaplink

    Xbox One VS PS4

    The GTA 5 gameplay footage was recorded on a Playstation 3.
  17. Heaplink

    HELP WITH PHP AND MYSQL

    mysql_query("UPDATE users SET status = '{$status}' WHERE id = {$userid}"); Note that $userid is the ID of the user (obviously) so find the right variable. Also, use PDO or MySQLi, both for security and for later support (Old mysql functions will be deprecated)
  18. Heaplink

    [Help] Room With Gates Problem

    This is a emulator problem. What emulator do you use?
  19. Heaplink

    [SUGGESTION] New DevBest Skin

    I do not approve.
  20. Heaplink

    Beta Key System.

    It's quite easy to make such a system, even secure. - Use PDO/MySQLi - not the (soon to be deprecated) mysql functions. - Create 2 tables; betakeys (id, betakey) The id is a PRIMARY KEY The betakey column will contain the generated beta key. users (id, [...], betakey_id, hasbeta) The [...] are...
Top