My XAMPP know can work normally :mrgreen: Yesterday, Apache on my XAMPP can't running. And i get the solution: "To Disable Windows 7 feature (Internet Information Services) " :) The solution that given by Jacek, i have try it. But it not change the user profile :( So, i give you all of my ...
@ Temor : oh sure.. Here the code :) <?php // fetches all of the users from table function fetch_users(){ $result = mysql_query('SELECT `user_id` AS `id`, `user_username` AS `username` FROM `users` ' ); $users = array(); while (($row = mysql_fetch_assoc($result)) !== false){ $users[] =$row; } return...
Hi, i watched BetterPHP's video on Youtube about User Profile. I think it's a very good tutorial. I type all of the PHP code. At last, i want to edit the user information on edit_profile.php but i get a problem. The user information in profile.php does not change. This is my edit_profile.php code <?...