Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
PHP how to insert into MySQL database
Play lesson

PHP tutorial for beginners 🐘 - PHP how to insert into MySQL database

5.0 (1)
17 learners

What you'll learn

This course includes

  • 3.5 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

#PHP #course #tutorial include("database.php"); $username = "Patrick"; $password = "rock3"; $hash = password_hash($password, PASSWORD_DEFAULT); $sql = "INSERT INTO users (user, password) VALUES ('$username', '$hash')"; try{ mysqli_query($conn, $sql); echo"User is now registered"; } catch(mysqli_sql_exception){ echo"Could not register user"; } mysqli_close($conn);

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere