hilfe, wo ist denn nur der fehler

newom
hi,

ich verzweifel hier noch völlig....

bekomme die fehlermeldung

Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /usr/export/www/hosting/om69/test/eedit.php on line 16

das script sieht so aus:

php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
<?php
{
if (!isset($aktion))

    $aktion "upload";

if ($aktion == "upload")  {

    echo"<html>".
        "<head>".
        "<title>bilder</title>".
        "</head>".
        "<body>";
    echo"Hier können Sie ein Bild uploaden :";
    echo"<form method=\"post\" action=\"eedit.php?aktion=submit\" enctype=\"multipart/form-data\">".
     "<input type=\"text\" name=\"form_description\" size=\"40\">".
     "<input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"1000000\">".
     "<br>File to upload/store in database:<br>".
     "<input type=\"file\" name=\"form_data\" size=\"40\">".
     "<p><input type=\"submit\" name=\"submit\" value=\"submit\">".
     "</form>";

}


sieht jemand den fehler? ich leider nicht...

grüße, om
tkshorty
also entweder:
php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
<?php
{
if (!isset($aktion))

    $aktion "upload";

if ($aktion == "upload")  {

    echo"<html>
        <head>
        <title>bilder</title>
        </head>
        <body>";
    echo"Hier können Sie ein Bild uploaden :";
    echo"<form method=\"post\" action=\"eedit.php?aktion=submit\" enctype=\"multipart/form-data\">
     <input type=\"text\" name=\"form_description\" size=\"40\">
     <input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"1000000\">
     <br>File to upload/store in database:<br>
     <input type=\"file\" name=\"form_data\" size=\"40\">
     <p><input type=\"submit\" name=\"submit\" value=\"submit\">
     </form>";

}


oder:

php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
<?php
{
if (!isset($aktion))

    $aktion "upload";

if ($aktion == "upload")  {

    echo"<html>";
    echo"<head>";
    echo"<title>bilder</title>";
    echo"</head>";
    echo"<body>";
    echo"Hier können Sie ein Bild uploaden :";
    echo"<form method=\"post\" action=\"eedit.php?aktion=submit\" enctype=\"multipart/form-data\">";
     echo"<input type=\"text\" name=\"form_description\" size=\"40\">";
     echo"<input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"1000000\">";
     echo"<br>File to upload/store in database:<br>";
     echo"<input type=\"file\" name=\"form_data\" size=\"40\">";
     echo"<p><input type=\"submit\" name=\"submit\" value=\"submit\">";
     echo"</form>";

}


klappt beides

aber n zeilenumbruch bekommst du durch \n und nicht durch das was du da gemacht hast