Quote Originally Posted by enigmabomb View Post
Oh yeah That too.

Any idea why I can't send echo statements from the update function?
Probably because there's a page redirect happening, which dumps the echo'd data into a black hole. Use die('INFO HERE'); instead of echo() if you want to halt execution and see what's happening. Remember that die() halts execution though.