Jump to content
MakeWebGames

Developer

Members
  • Posts

    12
  • Joined

  • Last visited

Developer's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Looking for QUALITY work, for my Pokemon RPG. I will need 2 pages in-game and out-game, as well as the css and html coding. If you are willing to do the job I will need to see some of your best work. Budget: $200
  2. I got Peter to do it for me for $100. Lock this thread please.
  3. Hi, I'm looking to get a ingame (also maybe a outgame) layout designed for me. It's going to be for my Pokemon RPG. The template also needs to be responsive every computer monitor will fit the layout correctly. Budget: $100
  4. No use for it anymore, selling it for around $60 http://gyazo.com/a257051d1eed0dc95b9371073793f609
  5. Still not working :/. Edit: Found the error, the collation was wrong. I just had to replace the uft8 with latin1
  6. Developer

    PDO Login Error

    Register is working fine, but I can't seem to get the login working. I keep getting "Invalid Username/Password". Can anyone find the problem? This code is on loginclass.php public function __construct( $data = array() ) { if( isset( $data['username'] ) ) $this->username = stripslashes( strip_tags( $data['username'] ) ); if( isset( $data['password'] ) ) $this->password = stripslashes( strip_tags( $data['password'] ) ); } public function storeFormValues( $params ) { //store the parameters $this->__construct( $params ); } public function userLogin() { //success variable will be used to return if the login was successful or not. $success = false; try{ //create our pdo object $con = new PDO('mysql:host=localhost;dbname=dbname;charset=utf8', 'username', 'password'); //set how pdo will handle errors $con->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION ); //this would be our query. $sql = "SELECT * FROM users WHERE username = :username AND password = :password LIMIT 1"; //prepare the statements $stmt = $con->prepare( $sql ); //give value to named parameter :username $stmt->bindValue( "username", $this->username, PDO::PARAM_STR ); //give value to named parameter :password $stmt->bindValue( "password", hash("sha256", $this->password . $this->salt), PDO::PARAM_STR ); $stmt->execute(); $valid = $stmt->fetchColumn(); if( $valid ) { $success = true; } $con = null; return $success; }catch (PDOException $e) { echo $e->getMessage(); return $success; } }   Here is the welcome/invalid message code. This is on a separate page called login.php <?php } else { $usr = new Users; $usr->storeFormValues( $_POST ); if( $usr->userLogin() ) { echo "Welcome"; } else { echo "Incorrect Username/Password"; } } ?>
  7. Thank you, I'm still waiting on Blade Makers reply and I'll contact Magictallguy   My budget is $500 for everyone but it will go up depending on the quality of work the person gives and or the feedback this person has.
  8. Thank you for the suggestion, I've contacted him.   Too many security issues/bugs ect. Also, I can't understand one thing from that source as it is all in a different language.
  9. Thank you, I'm still not sure on which engine I'll be using. Still looking a developer! Post here/PM me.
  10. The layout is not needed right now as I do have some I can incorporate with but it's just not that appealing. That leaves $400-500 (may add $100 more) still up for grabs. Thanks for the kind help!
  11. I would like some basic features like Login/Register Battling other users and gyms (page doesn't refresh) Live Battles (if possible) Viewing Profiles/Trainers Box Trading Sell/Buy Pokemon Changing moves and adding/removing items from Pokemon (I can provide the SQL with the moves and items) Pokedex which shows the stats of each Pokemon (I can provide SQL with all the Pokemon stats and names) Ability to claim promotional Pokemon Map system (page doesn't refresh) Premium Shop (users must buy coins) Staff Panel Bot Detection (see if user is actually battling or bot) I can name a ton of more features but a 2 good examples would be This RPG Also This.   I would like to stay within maybe $500, I can up it a little if needed. Also a custom layout would be nice.
  12. Hello, I'm new here and I'm looking for a developer to code me an Online Pokemon RPG. I've already set up a few RPGs but all were shutdown by me as I am not a very experienced coder, so I couldn't code anything unique and the RPG had only basic Pokemon functions that would not attract any users. Also, it was not very secure. Whoever does end up helping/coding for me the codes can be based off any engine or source you like. I will need to the price you would want for coding it. Also I'm not paying everything upfront, only half before the project and the last half after it's finished. You will need to show some previous work of yours before we get started. Paying through paypal only.
×
×
  • Create New...