Edit: Disregard all this, as I see you've started a second thread on the subject.
First off, I threw you off with a couple of careless typos. It's "$FILES", not "$FILE", and "['tmp_name']", not "['temp_name']". Sorry. (You should read this page to check those, and for valuable information.)
You're coding as if "register_globals" was turned on, and apparently it is or the "if ($submit)" clause would always fail. That's been deprecated for a long time as there are reasons for not doing it (read this page). So instead of "$submit" use "$POST['submit'], etc. And it looks like you're expecting the upload array ("$FILES") to work the same way, but it doesn't. Even with "register_globals" on, you need to explicitly reference the superglobal array, i.e. "$_FILES['image']['name']" instead of "$image". There's more about this here and here.
You need to add enctype="multipart/form-data" inside the form path to have any hope of the upload working right
You can try making those changes (i.e. using the superglobal arrays, etc.) and see what then happens.
Also, do you have error reporting and display turned on? (Again, apparently you don't or you'd be seeing messages all over your screen.) If not, turn it on.
I made some changes and got the script to work (I commented out the db stuff):
//if ($submit) {
if (isset($_POST['submit'])) {
//Database Connection
//include $_SERVER['DOCUMENT_ROOT'] . '/db.inc.php';
//$sql = "INSERT INTO images (category,title,image,submitted,approve) VALUES ('$category','$title','$image','$submitted','$approve')";
//$result = mysql_query($sql);
$desired_path = '/home/blondesa/public_html/uploads/';
$desired_file_name = $_FILES['image']['name'];
move_uploaded_file($_FILES['image']['tmp_name'], $desired_path . $desired_file_name);
echo "<br><br><h1>Thank you for your image!</h1> We will make sure your joke is not obscene or in any way against our terms prior to being approved.<br><br> <a href='http://www.blondesandrednecks.com/index.php'>Continue</a>
| <a href='http://www.blondesandrednecks.com/visitorimage.php'>Enter another image</a><br><br>";
} else{
// display form
?>
<center><table width="100%" border="0">
<tr><td valign="top">
<form enctype="multipart/form-data" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<table width="350" border="0" align="center">
<tr><td width="100" align="left"><b>Choose Category:</b></td><td align="left" width="250"></td></tr>
<tr><td width="100" align="left"><b>Make up a Title:</b></td><td align="left" width="250"><input type="Text" name="title" size="40"></td><tr>
<tr><td width="100" align="left"><b>Upload image to Database:</b></td><td align="left" width="250"><input type="file" name="image"></td><tr>
<tr><td width="100" align="left"><b>Submitted by:</b></td><td align="left" width="250"><input type="Text" name="submitted" size="40" value="Anonymous"></td><tr>
</table>
<input type="Submit" name="submit" value="Enter Image">
</form>
</td>
<td valign="top">
</td></tr>
</table></center>
<?php
} // end if
hth