Jump to content
MakeWebGames

Aurora078

Members
  • Posts

    103
  • Joined

  • Last visited

    Never

Everything posted by Aurora078

  1. As i was about to say, was there any point in your post? No, there is absolutely positively orgasmicly flying no point in this post.
  2. There is no point. Why are you getting all serious about it
  3. Aurora078

    Spider Pug

  4. Why does the world turn? Why does life exist? Lol. Theres no 1 answer.
  5. The whole thing right now is a seperate folder with seperate files.
  6.   Plus its not just the sglobals. im recoding the entire panel from scratch
  7. How do you know it isnt as secure as yours could be? I havent shown anyone much code,
  8. The reason floydians gang system was hard is because thats one of his styles of coding. Its alot better than to just leave variables hanging around and stuff. But my staff panel is mainly basic, aside from the jQuery
  9. I don't get why i should format things. I heard it was good, but whats the difference anyway?
  10. Thats nice to know. Im about 20% done with mine, and so far is secure and nice.
  11. Update: Users section basically completed. Moving on to settings.
  12. I was thinking of using ajax strictly for the error function it allows that post doesnt.
  13. Yeap. lol. Also, -Update: "Users" section started. Add User finished ( Also, It creates them with only the username, login_name, password, email. Anything else or is that good enough ). Calling it a day. Will Post screens before i go to sleep tonight. Also, since the staff_users table isnt used in the actual game itself, but rather in its own thing, its more secure.
  14. - Small Update: Using an array and foreach for the nav, instead of if'ing the hell out of it. Mainly for the icons for the pages.
  15. Ohh. Yeah ive seen that before.
  16. Module as in.. Like redid and stuff?
  17. Thats cool. Staff Groups and everything?
  18. Well, ive thrown out the other ideas because they aren't that useful. However, ive come up with a new idea, which im interested in. I am creating a McCodes Staff panel from scratch. Features: Secure: As secure as i can. Staff users are now put in a seperate table, with their user id and ( group id ). Different sessions than the normal login, etc. Staff Groups: Each staff user has a specific group, specified by whoever made them staff. Each group has permissions which limits them to what they can do in the staff panel. Staff groups will be createable, editable, and deleteable by Super Administator ( Default ). New Look: I like the look myself. I'll post screens when i get more coding done. jQuery/Ajax: Basically, most of anything you would have to post using a form is done through ajax. Suggestions?
  19. Ok, so i know how to send a post. My problem is, how can i send my data ( in this case a username and password ) to another page, and then get a response displayed in my div "output_"? Any help will be much appreciated.
  20. Is there a way to read the zip file and grab the filenames ?
  21. Aurora078

    GD question

    No, just specifics, but i'm fairly new to mod_rewrite so i dont know any other way.
  22. Yeah the reason i didnt use globals was that it includes header. and i thought about security after the fact, and unless anyones interested im not really going to do anymore with it. and i know theres been player cards, i just felt like making my own thing
  23. Well, i created a simple script that would allow for a user's information to be displayed on a image card, which they could use on forums, etc. But, i don't have images, so you'll have to supply your own and ill code them into it for you, or someone else could help others with images..   <?php include('config.php'); include('class_db_mysql.php'); global $db,$_CONFIG; $db->configure($_CONFIG['hostname'],$_CONFIG['username'],$_CONFIG['password'],$_CONFIG['database'],$_CONFIG['persistent']); $db->connect(); $q = $db->query(sprintf("SELECT `userid`,`username`,`money`,`level`,`display_pic` FROM `users` WHERE `userid`=%s",$_GET['user'])); $fetch = $db->fetch_row($q); header('Content-Type: image/png'); $im = imagecreatefrompng('image.png'); //Would add user pics, other details, etc. here imagepng($im); imagedestroy($im); ?>   Which if you went to http://example.com/user_images/image.php?user=id, then it would display the image for that user. If you have .htaccess enabled on your server, you can use RewriteEngine on RewriteRule user-(.*)\.png$ /user_images/image.php?user=$1   Which would display the image if you went to http://example.com/user_images/user-id.png, which would be better for forums.
×
×
  • Create New...