Ahoj, potreboval by som pomoc:
mam formular:
adresar.html
Kód:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sk" >
<head>
<title>Vytvorenie adresara</title>
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-2' />
</head>
<body>
<form action='./adresar.php' method='get'>
<p>
<strong>Nazov :</strong>
<input type='text' name='meno' />
<strong>Prava :</strong>
<input type='text' name='atribut' size='6' />
</p>
<p>
<input type='submit' name='btnVytvor' value='Vytvor adresar' />
</p>
</form>
</body>
</html>
a
adresar.phpKód:
<?php
if (!is_dir($_GET['meno']))
{
$adresar=mkdir("./".$_GET['meno']);
chmod("./".$_GET['meno'], octdec($_GET['atribut']));
if ($adresar)
{
echo "Adresár ".$_GET['meno']." bol úspesne vytvorený. ";
echo "Jeho práva sú: <strong>".substr(sprintf('%o', fileperms($_GET['meno'])), -4)."</strong>\n";
}
else
{
exit_smart('Chyba pri vytvorení adresára');
}
}
else
{
echo "<p>Adresár ".$_GET['meno']." už existuje.</p>\n";
?>
a pise mi chybu
Kód:
Parse error: syntax error, unexpected $end in /PJ/adresar.php on line 19
Viete niekto stym pomoct
Dikes