PHP files for users -
i'm trying understand concept i've been trying learn last couple days; i see many social networks using user's id in url after file (example: "socialnetwork.php?id=123") navigate user. i want make profile.php same thing instead of directing me homepage everytime. question: how can use user's id in database read out unique profile data them in single file? - furthermore, should add register_config.php file allow this? <?php //requiring pass api config require 'password_config.php'; require 'connect.php'; //variables post data //other variables $email = $_post['register_email']; $username = $_post['register_username']; $userlen = strlen($username); $password = $_post['register_password']; $passlen = strlen($password); $submit = $_post['register_submit']; $hash_password = password_hash($password,password_bcrypt); $query = "s...