Hello, My name is Brandon. I have been programming in PHP & MySQL for 3+ years. I am looking to become a full-time programmer for 1 site. I am willing to work up to 4 hours a day Monday through Friday. I want to be paid. Coding Example: function clean($input){ return mysql_real_escape_string($input); } $selectThread = mysql_query("SELECT * FROM forumsThreads WHERE id='".clean($_GET['threadid'])."'") or die(mysql_error()); $thread = mysql_fetch_array($selectThread); $selectForum = mysql_query("SELECT * FROM forums WHERE id='$thread[forumid]'") or die(mysql_error()); $forum = mysql_fetch_array($selectForum); if(empty($thread['id'])){ echo "<center>That thread doesn't exist.</center>"; die("$closeHTML"); } if($_GET['threadid'] == $thread['id']){ $selectReply = mysql_query("SELECT * FROM forumsReplies WHERE threadid='$thread[id]' AND id='".clean($_GET['replyid'])."'") or die(mysql_error()); $reply = mysql_fetch_array($selectReply); if($_GET['action'] == "edit"){ $postTitle = clean($_POST['title']); $postMessage = clean($_POST['message']); Code (markup):