PHP-Code:
<html>
<?
if ($HTTP_GET_VARS["button"] == Verschlüsseln) :
{ ?>
<head> <link href="/../design.css" rel="stylesheet" type="text/css">
<title>Caesar Verschlüsselung</title></head>
<body>
<?
$c= " ";
$a = $HTTP_GET_VARS['wort'];
$zahl = $HTTP_GET_VARS['zahl'];
for ($i = 0; $i <= strlen($a); $i++)
{
$c = chr(ord($a[$i])+$zahl);
}
echo $c;
?>
</body>
<? }
else
{
?>
<head> <link href="/../design.css" rel="stylesheet" type="text/css">
<title>Caesar Entschlüsselung</title></head>
<body>
<?
$c= " ";
$a = $HTTP_GET_VARS['wort'];
$zahl = $HTTP_GET_VARS['zahl'];
for ($i = 0; $i <= strlen($a); $i++)
{
$c =chr(ord($a[$i])-$zahl);
}
echo $c; }
?>
</body>
<? } ?>
</html>
so, das wars auch schon, irgendwie bekomm ich den Fehler:
Parse error: parse error, unexpected '{', expecting ':' in /home/webpages/lima-city/ninja02/html/Bilder_Co/caesar.php on line 21
Also zum Inhalt:
Er soll einen String bekommen und den dann um eine vorher bestimmte Zahl im Alphabet verschieben. Caeser VErschlüsselung.
Nun soll er dies mit dem Script, abhängig davon machen, ob man auf verschlüsseln oder entschlüsseln klickt. der button heißt eben verschlüsseln..^^
ninja02 hilfe suchend ^^
Kommentar