Search found 6 matches

by SamuelSHP
Wed Dec 28, 2011 3:14 am
Forum: Tutorials
Topic: Problem On Profile Page -- Can't edit the user information
Replies: 11
Views: 1935

Re: Problem On Profile Page -- Can't edit the user informati

@temor

:( code that given to me don't change the user information :cry:
by SamuelSHP
Mon Dec 26, 2011 10:27 am
Forum: Introductions
Topic: Hello a new person here!
Replies: 4
Views: 1372

Hello a new person here!

Hi.. I'm new here.. Very newbie in PHP Programming so, i need a "guide" to learn more about PHP
by SamuelSHP
Mon Dec 26, 2011 5:24 am
Forum: Tutorials
Topic: Problem On Profile Page -- Can't edit the user information
Replies: 11
Views: 1935

Re: Problem On Profile Page -- Can't edit the user informati

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 ...
by SamuelSHP
Mon Dec 26, 2011 2:30 am
Forum: Tutorials
Topic: Problem On Profile Page -- Can't edit the user information
Replies: 11
Views: 1935

Re: Problem On Profile Page -- Can't edit the user informati

Thanks for the solution, but when i want to try the solution, my XAMPP program get an error, so now i can't try it. :cry:

And if my XAMPP can work normally, next time i will try this solution.
by SamuelSHP
Fri Dec 23, 2011 3:05 pm
Forum: Tutorials
Topic: Problem On Profile Page -- Can't edit the user information
Replies: 11
Views: 1935

Re: Problem On Profile Page -- Can't edit the user informati

@ 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...
by SamuelSHP
Fri Dec 23, 2011 7:25 am
Forum: Tutorials
Topic: Problem On Profile Page -- Can't edit the user information
Replies: 11
Views: 1935

Problem On Profile Page -- Can't edit the user information

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 <?...