Search results

  1. konekt

    Wood Texture - 500 creds

  2. konekt

    Wood Texture - 500 creds

  3. konekt

    Mysql error

    Go under the MySQL tab on your CPanel account and create a new user with all the needed permissions. I'll make a picture tutorial if you need but it should be pretty self-explanatory (i.e. well labeled so you know what you need to click). The tables do not have auto-created accounts so the...
  4. konekt

    Yahoo rejecting mail sent through php

    You're sure your domain isn't just being flagged as junk? Add the sender to your safe address list and send it.
  5. konekt

    Wood Texture - 500 creds

    1 2 3 4 5 The specs. were kind of vague so I just made wood -_- If you need to know the brushes I used (copyrights or whatnot) I can give you links.
  6. konekt

    POST without submit

    Not particularly true, at least not in the sense that it does not add a significantly extra shaky security then any other methods that introduce dynamic, slightly public, methods (i.e. POST). You could also use cookies.
  7. konekt

    [Game Programming] Highlander

    Starting small is a great idea. Actionscript for Flash is a very solid first step in programming (but, just to emphasize a first step, think of it like a tricycle compared to C++ which is an F-14) because it takes away so much of the clout (wrapping variables, classes, etc...) while giving you a...
  8. konekt

    PHP Warrings:

    Sorry about that, couldn't resist :) As stated, we need to see where in your code you attempted to destroy the fabric of the cosmos.
  9. konekt

    Starting with C++

    Yes, it has to be compiled. A good IDE and no-dos-prompt-compiler you can use is Dev-C++ from Bloodshed. I personally user Visual C++ and some of Microsoft's other packages that I get free through university. You can also use Visual C++ express which is free and easier to integrate with outside...
  10. konekt

    [Game Programming] Highlander

    Allow me to serve my part as the programmer by keeping us acting logically ;). Designing a game is fun and all, especially when you're doing the concepts, story and graphics; it gets, however, extremely complicated when you start to delve into the circuitry of the game. Knowing a language is...
  11. konekt

    [Game Programming] Highlander

    I'll throw in a word or two to anyone wanting to work on the programming. The preliminary question we need to ask ourselves is what base are we starting from. Do we prefer Java development or your regular C++? Java will, in my mind, be tons easier (think Runescape) but C++ offers a lot more in...
  12. konekt

    trying to make a site with Photoshop, but..

    If the products panel is always the same size, the best way to do it is to cut a 1x1 px. vertical cut of your gradient and use CSS to repeat it so it fills the box.
  13. konekt

    Adding to .php

    Are you asking how one sends data to scripts?
  14. konekt

    CSS or Javascript?

    CSS and Javascript are highly dissimilar languages. One is, as the name suggests, a scripting language. You can automate interactions and functions, however, the front end depends on implementation of the DOM and elements of HTML/CSS. Any styling you would do would, ultimately, go through...
  15. konekt

    [Game Programming] Highlander

    I'll help if this thing goes through. I'm a comp. sci. major and know C* (*= any C will do, may need to review some), JAVA, PHP, JS (AJAX capable), and MYSQL.
  16. konekt

    java and the time

    :nuts: Anyway, if you will allow for some guessing as to why that solution worked, I believe it has something to do with the order of the java compiler's execution where the variables were siphoned as a decelerations before the thread execution (i.e. the change made the diff.time an execution...
  17. konekt

    java and the time

    Sometimes those commands run faster then is notable. Your time declarations also occur at the same time: long starttime = Calendar.getInstance().getTimeInMillis(); Main.statusbarTextLeft.setText(" Berekenen..."); Thread nextStep = new Thread(new...
  18. konekt

    Immediate help will give 500 credits

    templates/system/error.php <--- getting rid of that file should do it I think. You can also replace it with custom messages.
  19. konekt

    [php] Strings

    $asdf = $asdf.'arg!'; The dot...
Top