I'm assuming you just have the one location for setting connection details. If you have them all over the place, ensure that you've changed them all. However, you'd probably get an error if you've used the 'or die(...)' structure.
Do you have the right priviledges (for the user mentioned in the connection details) to do what you need?
It may be useful to give an example of any code that fails to work. Scramble your connection details (user/pw) before posting though.
diafol
Keep Smiling
10,672 posts since Oct 2006
Reputation Points: 1,632
Solved Threads: 1,514
Skill Endorsements: 57
OK, before looking at the code. phpMyAdmin logs you out as soon as you press schedule. That sounds odd. Have you contacted your host?
diafol
Keep Smiling
10,672 posts since Oct 2006
Reputation Points: 1,632
Solved Threads: 1,514
Skill Endorsements: 57
echo your query to the screen:
$query = "SELECT * FROM " . $dbtable . " WHERE `day` = '" . $day . "' ORDER BY `time_start` ASC";
echo $query;
exit;
The exit will stop further execution (as you know). COpy the text from the screen and paste into the sql pane in phpmyadmin. Run the query and see if it gets updated or if nothing happens.
diafol
Keep Smiling
10,672 posts since Oct 2006
Reputation Points: 1,632
Solved Threads: 1,514
Skill Endorsements: 57
No, highlight the output from the screen (from the code I supplied - or modified), copy it and paste that into the sql window. You shouldn't see any php in it.
diafol
Keep Smiling
10,672 posts since Oct 2006
Reputation Points: 1,632
Solved Threads: 1,514
Skill Endorsements: 57