Jump to content

Philip

Staff Alumni
  • Posts

    4,665
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by Philip

  1. Depends how you have your current 'point' system setup right now. Can you post more info (db schema)? I'd use mysql's time/date and update with NOW()
  2. Basically: $var = condition?is_true:is_false; http://us.php.net/ternary#language.operators.comparison.ternary
  3. You sure are losing a lot of packets. For me (50 packets) phpfreaks: average 45ms, 0% loss google: average 46ms 0% loss
  4. Take your pick, but the shorter the var name the more likely you're going to accidentally use a previous var. $y-$mo-$d $h:$mi:$s $year-$mon-$day $hour:$min:$sec $year-$month-$day $hours:$minutes:$seconds
  5. That's the wireless icon if I remember correctly, and you're running off a hard line.
  6. Yeah, the GPL route would probably be better. The one I linked isn't really made for software I guess, but it has the same principles behind what you are looking for.
  7. I'm no expert but a quick search: http://creativecommons.org/licenses/by-nd/3.0/
  8. The best reply you are going to get was already in this thread:
  9. If you are typing a review, why would you need to automate it? Or are you gonna just automate the review item too, madlibs style? Learn some regex, scrape code. Or DOM might work if their html is okay. But you still may need to learn some regex to parse individual nodes. But first, question yourself if you really wanna steal other people's stuff, because I don't know about you, but I'd have a hard time snoozing at night doing that sort of thing.
  10. Pagination with sortable columns.
  11. Because it works, and that's all they care about. As long as it looks right on the front end, they don't care whats underneath the skin And it is a must for compatibility for email designs, which drives me nuts when I have to do build one... but it's the only option really.
  12. I still am asking this question when I visit your site. You shouldn't have to tell me on the forums, I should just know by visiting your site
  13. Considering the faq doesn't show anything about the charity, and the playfulness of the copy, I wouldn't be trusting that it went to charity. And yes, just another pixel ad site. These will just never go out of style
  14. 1. Red 2. Yellow 3. Green ^^ standard traffic light, ha.
  15. I've only reached the start screen so far, but it's pretty amazing. That game is completely written in Javascript? Also.. (all of this is so new to me! ) I really want my game to play in the browser though.. Would it be possible to make a game like Aquatis and it plays the same in the browser? It IS possible, but remember not everyone will be able to load it. https://www.khronos.org/webgl/wiki/Getting_a_WebGL_Implementation
  16. What the hell are up with the idiotic comments on that video +1
  17. Flash is the most common for browser games, but depending on your needs you might be able to get away with some javascript. Just depends on the complexity.
  18. You could, but I'm guessing it would be unlikely with the info provided. Changing the delimiter would easily fix this. $strs = explode("|||", wordwrap($mystring, 25, "|||"));
  19. http://www.snowdropkcs.co.uk/snowdropkcs_integrated_softwar.aspx ?
  20. No, you're understanding wordwrap correctly, but if you use explode on that (as seen in my example) it'll convert it into an array
  21. Why wouldn't wordwrap work? $strs = explode("\n", wordwrap($str, 25, "\n"))
  22. "SELECT * FROM cinos11_pages WHERE name='chatbox'" What is the column "name"? I thought it was "title" - and it is case sensitive. Did you try plugging in my query?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.