Search the Community
Showing results for tags 'work'.
-
Hey there. My name is Jamie, and I have been creating websites for about 7 years now. I have freelanced several times in the past, and had a full time job coding with PHP over the summer. My specialty is PHP/MySQLi, but in terms of web development I also know javascript (jquery), HTML and CSS. My prices are pretty good, I'm willing to bargain if necessary. I'm more interested in big jobs, but I'm totally fine with doing small ones if it comes up. If you are interested in my services, you can contact me at jccreaghan@gmail.com or by skype at repentance193 Thanks and have a good day!
-
- php
- freelancer
-
(and 1 more)
Tagged with:
-
Hey guys. Im about to fail my PhP course and need help with an assignment asap. You would have to create a php login script. If you are interested, please PM me and we'll go over details. Thanks!
-
- pay
- assignment
-
(and 3 more)
Tagged with:
-
Hello all This code below works but doesn't filter records by owner. Please help. thanks SELECT * FROM books LEFT JOIN car ON books.car_id = car.id LEFT JOIN cat ON books.cat_id = cat.id WHERE books.owner = '$owner'
-
The following code doesn't work can someone please help me out? <?php // Connects to your Database mysql_connect("db.xxxxxx.org", "xxxxxx", "xxxxxx") or die(mysql_error()); mysql_select_db("md212730db240041") or die(mysql_error()); //This code runs if the form has been submitted if (isset($_POST['submit'])) { //This makes sure they did not leave any fields blank if (!$_POST['username'] | !$_POST['pass'] | !$_POST['pass2'] ) { die('You did not complete all of the required fields'); } // checks if the username is in use if (!get_magic_quotes_gpc()) { $_POST['username'] = addslashes($_POST['username']); } $usercheck = $_POST['username']; $check = mysql_query("SELECT username FROM users WHERE username = '$usercheck'") or die(mysql_error()); $check2 = mysql_num_rows($check); //if the name exists it gives an error if ($check2 != 0) { die('Sorry, the username '.$_POST['username'].' is already in use.'); } // this makes sure both passwords entered match if ($_POST['pass'] != $_POST['pass2']) { die('Your passwords did not match. '); } // here we encrypt the password and add slashes if needed $_POST['pass'] = md5($_POST['pass']); if (!get_magic_quotes_gpc()) { $_POST['pass'] = addslashes($_POST['pass']); $_POST['username'] = addslashes($_POST['username']); } // now we insert it into the database $insert = "INSERT INTO users (username, password) VALUES ('".$_POST['username']."', '".$_POST['pass']."')"; $add_member = mysql_query($insert); ?> It returns this error: Parse error: syntax error, unexpected $end in /public/sites/build2.mccity.org/Register.php on line 237 Thanks alot on forhand.