Jump to content

Me1337

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Me1337's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Sorry, I'm not that familiar with PHP, I just started a week ago. I don't understand how that code you pasted would help.
  2. Hello, I'm trying to get an html textbox assigned to a php variable so I can put this on my panel. Can you please revise and edit this code? <?php $con = mysql_connect("localhost","root","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("PenguinWorld", $con); mysql_query("UPDATE pw_users SET Nickname='nick' WHERE Username='username'"); mysql_close($con); ?> <html> <form name="input" action="changed.php" method="get"> Username:<INPUT TYPE = "Text" VALUE ="username" NAME = "username"><br> New Nick: <INPUT TYPE = "Text" VALUE ="nick" NAME = "nick"><br> <input type="submit" value="Submit" /> </form>
×
×
  • 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.