Hmm schon wieder ein Problem <.< und die Lösung ist garantiert wieder so einfach wie oben <.<

Also warum wird hier nichts in die DB eingetragen?

PHP-Code:
<?php
include("config.php");

if(
$_GET['start'] == "")
{

if(isset(
$newcat)) {
$catsql "INSERT INTO cat (name, desc) VALUES ('$catname', '$catdesc')";
$catquery mysql_query($catsql);
header("location: admin.php?entry=newcat");
}
if(isset(
$newdownload)) {
$download_sql "INSERT INTO downloads (downname, downlink, cat, downdesc) VALUES ('$downname', '$downlink', '$downcat', '$downdesc')";
$download_query mysql_query($download_sql);
header("location: admin.php?entry=newdownload");
}


/* Entry URLs */
}
if(
$_GET['entry'] == "newcat")
{
echo 
"Neue Kategorie wurde erfolgreich eingetragen!<br>";
echo 
"<a href=\"admin.php\">Zurück</a>";
}
elseif(
$_GET['entry'] == "newdownload")
{
echo 
"Neuer Download erfolgreich eingetragen!<br>";
echo 
"<a href=\"admin.php\">Zurück</a>";
}
else
{
echo 
"Error! Seite existiert nicht!";
}
/* Entry URL's Ende */
?>
<!-- Start Form - Cat -->
<form method="post">
<h1>Kategorie hinzufügen</h1><br>
Kategoriename:<input type="text" name="catname"><br>
Kategoriebeschreibung:<input type="text" name="catdesc"><br>
<input type="submit" name="newcat" value="Absenden"></form>
<!-- End Form - Cat -->
<br>
<!-- Start Form - Download -->
<form method="post">
<h1>Download hinzufügen</h1><br>
Downloadname:<input type="text" name="downname"><br>
Downloadurl:<br>
(mit ohne http:// und komplette URL)<input type="text" name="downlink"><br>
Downloadbeschreibung:<input type="text" name="downdesc"><br>
Zur Kategorie hinzufügen(Name): <input type="text" name="downcat"><br>
<input type="submit" name="newdownload" value="Absenden"></form>