Earlier quoted context omitted.
If you are familiar with another programming language, and able to DO programming, then, on average, it wouldn't take longer than a month. That would be sufficient, I GUESS. I built a social networking site in PHP in the last semester. And it was my first PHP web-application! I did learn PHP (and Relational databases) in a month before that. I made a post about it, if you want to see ( http://xworkspace.blogspot.in/2…
$email = $_POST['email']; $password = $_POST['password']; $query = "SELECT emailAddress, password, userID FROM users WHERE emailAddress = '$email' AND password = '$password'"; $result = $db->query($query); Um... not to digress but it looks to me like there's a SQL injection hole here. Please use PDO and a bit more validation, this doesn't properly escape anything. You could validate the email address with filter_var,…
I guess, I am also on the same path as with the author of this post. But yeah, thanks again, I will improve it as soon as I can. :-)