Hallo, habe folgenden PHP-Code, allerdings stimmt da etwas nicht in Zeile 40 (For-Schleife)
Parse error: syntax error, unexpected T_INC, expecting ')' in /var/www/web26/web/PHPPunkte.php on line 40
<?php
$auto = $_GET['Automarke'];
$cars[0]="BMW";
$cars[1]="Audi";
$cars[2]="VW";
$cars[3]="Mercedes";
$cars[4]="Porsche";
$cars[5]="Opel";
function isDE($auto)
{
for($x=0; $cars[x]== $auto; x++)
{
if($cars[x]==$auto)
{
echo $cars[x]."ist eine deutsche Automarke";
}
else
{
echo $auto."ist keine deutsche Automarke";
}
}
}
?>
kann mir da jemand weiter helfen?