Re: [PHP] Problem updating post on a basic weblog system

2002-09-12 Thread Chris Wesley
if ($post == "post") { postBlog ($post,$input,$title); }elseif ($post == "edit"){ updateBlog ($input,$edit_post); // < BINGO! } Just looking at the code you posted to your site, there's only one thing obvious to me: You want to use $edit_blog in t

[PHP] Problem updating post on a basic weblog system

2002-09-12 Thread Jesse Lawrence
Hello all, I've got a bit of a code problem that's been baffling me for a while now. I'm working on a basic weblog system for personal use, using MySQL. I've got the "new post" and "delete a post" aspects working fine, but for some reason, I can't get the "update a post" part happening. What