Jump to content

Soldier Jane

Members
  • Posts

    29
  • Joined

  • Last visited

    Never

About Soldier Jane

  • Birthday 09/30/1988

Profile Information

  • Gender
    Not Telling

Soldier Jane's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Ahahaha, I'd love to make something my iPhone-using friends love, only to have them unable to use it on their phones. It really annoys me when they sit there tapping away, ignoring everyone.
  2. A good reason not to is the fact that iPhones don't support it. Alot of people use iPhones and would not be able to play your browser game on their device if you created it in Flash, which would diminish the availability to mobile devices considerably. Don't forget that there are other mobile devices too that would struggle with Flash, so JScript might be a much better choice if mobility is a part of your plan.
  3. Glad to see that I'm not alone I agree tables are appropriate for statistics and more abstract things like a 'control panel'. It's annoying to see it used for layout because technologies like CSS have been developed (and are indeed still being developed) only to have years of work being undermined by trash techniques.
  4. 回声("象这样"); Edit: Damn, chopped up by processing. Should read:
  5. I'd do it in XNA using C#. Sphere (which someone suggested) is also a great option, and they are apparently upgrading their game engine. When it comes to SNES-esque gameplay I wouldn't use a js/php/mysql environment. It can be done, but I wouldn't describe it as the most appropriate platform, unless you want it to be browser-based, then I'd recommend it over Flash any day.
  6. CyberDuck is the way to go. Best FTP program I've ever used.
  7. Does anyone else get really annoyed when they see code using tables for layout structure? I don't understand how people learn HTML and grasp this concept. It's 2010 and there are obviously still tutorials out there recommending this practice. What is going on?
  8. I'm not quite understanding what the problem is. If you mean by this "How do I access my site using XAMPP?" You simply put your files in the folder specified in the configuration and point your browser to it (index.php).
  9. Just noticed something, try this: $sql = "UPDATE `Member` SET `rp` = 'rp + $winnings' WHERE `username` = '$username'";
  10. Sorry, in my tired state I misread something, you should ignore what I said before, haha. Are you getting any error messages or just observing the the data in the database?
  11. Try changing your query to UPDATE rather than SET.
  12. I'm too tired to write up the actual code but I'm sure you could do it with strlen() and substr() Actually, since you gave the vars at the bottom of your post. $characterlimit = 25; if(strlen($Thread['title']) > $characterlimit){ echo substr($Thread['title'], 0, $characterlimit) . '...'; }else{ echo $Thread['title']; }
  13. Code please! Could be something to do with variable scope or any other number of things.
  14. If it really boils down to personal preference I'd suggest simply trying them out or looking at http://kuler.adobe.com/ for some inspiration.
  15. Guidelines for what exactly? Also, this is a PHP forum not ASP, you may want to try posting elsewhere, perhaps even the HTML one. Or are you asking how to generate static HTML pages using PHP? Oh, and XSS is covered in a tutorial on this very site: http://www.phpfreaks.com/tutorial/php-security
×
×
  • 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.