Ok. NogDog and Nemonoman,
Thank you very much for you reply.
After looking at the two replies, I quickly went back to the drawing board, and triple checked all my variables....twice.
Then, I decided to use a mysql_query insert clause and see if it would insert my data.
It was, but all 0's. So, I went back to checking all variables, which were correct, and then I realized something....the code in question was nested inside an if/else statement.
if($account=="none"){
//Do Nothing
}
else {
the code in the original pose
}
I noticed that in my insert statement, my name column had the value of 'none'.
That's when it hit me...the problem is with my If Statement. I thought, I have been writing too much ASP and VBA latley, I'm not checking the If statement for None, I'm resetting my variable to none.
Well, in the end, what I finally found was that I was missing the brackets for my else statement....I have been writing too much ASP latley.
Haha! I'm sorry for the long post to a simple matter, but I'm sure you can find the humor in all this!!
Thanks again NogDog and Nemonoman for your reply!
Johnie Karr