Astratqp: Fehler im Script

Beitrag lesen

Ich habe versucht ein PHP Script mit HTML Code zu erweitern.
Der HTML und JS Teil geht nun wunderbar. Allerdings funktioniert die
Erstellung der News mit der Bedingung:

if($_POST[do_create_news] == 1)
{
mysql_query("insert into toxic_clan_news (topic,text,time,newsgroup,creater_id,creater_name,comments,artikel) VALUES('$_POST[topic]','$_POST[text]','$time','$newsgroup','$login_id','$login_nick','0','$_POST[artikel]')");
}

if($_POST[do_create_news] == 1) echo"News erfolgreich erstellt";

Das ganze ist darauf zurück zu führen das ich
 <form name = "create_news" auch im HTML Teil habe. Entferne ich dieses wieder geht zwar das PHP Script wieder aber mein JS bringt
Fehler da es natürlich mein document "create_news" nicht findet.

Hier das ganze PHP Script ich weis es ist lang (ist nur ein AUSZUG)aber ich weis mir nicht zu helfen:

-----------------------------------------------------------------
<form name = "create_news">

<script language="JavaScript" type="text/javascript" src="modules/wncode.js"></script>
<table width="20" cellpadding="0" cellspacing="0" border="1" style="margin-bottom:3px;" bgcolor="#9D4F00" bordercolor="#C0C0C0"><tr>
<td width="10%"><input type="radio" name="mode" value="0" onclick="savemode(this.value);" id="mode0"%m0check%></td><td width="80%" nowrap><font face="Verdana" size="-1">&nbsp;Fenster Modus&nbsp;</font></td>
<td class="barbutton"><img src="design/fett.gif" alt="Fett" title="Fett" border="0" onclick="wncode('B','');"></td>

<?

check_login($login_news);

if($_POST[do_create_news] == 1)
{
mysql_query("insert into toxic_clan_news (topic,text,time,newsgroup,creater_id,creater_name,comments,artikel) VALUES('$_POST[topic]','$_POST[text]','$time','$newsgroup','$login_id','$login_nick','0','$_POST[artikel]')");
}

if($_POST[do_create_news] == 1) echo"News erfolgreich erstellt";

if($_POST[do_create_news] != 1) {
echo"

<form name="create_news" action="index.php?ID=create_news" method=POST>
<input name="do_create_news" value="1" type="hidden">
<table cellspacing="1" cellpadding="1" border="0" bordercolor="#074D9B">
 <tr>
  <td width="110" class="inhalt">Topic:</td>
  <td class="inhalt"><input name="topic" value="" size="50" maxlength="45"></td>
 </tr>
 <tr>
  <td width="110" class="inhalt">Text:</td>
  <td class="inhalt"><textarea name="text" cols="50" rows="10"></textarea></td>
 </tr>
 <tr>
  <td width="110" class="inhalt">Newsgroup:</td>
  <td class="inhalt">
<select name="newsgroup">
<option>news</option>
<option>clanwars</option>
<option>scene</option>
<option>warcraft3</option>
</select>
  </td>
 </tr>
 <tr>
  <td width="110" class="inhalt">Artikel</td>
  <td class="inhalt"><input name="artikel" value="1" type="checkbox"></td>
 </tr>
</table>

<input type="submit" value="News erstellen">
</form>
";

}// do create news != 1

?>
</form>