добавление данных в файл
При запросе к серверу возвращается пустая страница.
Вот код:
Код:
<?php
$pc='pass';
echo $pc;
if($_GET['p']==$pc)
{
$sectionAll=file_get_contents('albom.dat');
$section=explode('|||', $sectionAll);
$section=explode(' href=', $section[count($section)-1])
$nosection=$section[1]+1;
$data=$sectionAll . $_POST['n'] . ' href=' . $nosection . '|||';
$fp=fopen('albom.dat', "w");
fwrite($fp, $data);
echo '<html><head><meta http-equiv="Refresh" content="1; url=admin.php?p='. $pc .'"></head></html>';
}
echo $pc;
?>
$pc='pass';
echo $pc;
if($_GET['p']==$pc)
{
$sectionAll=file_get_contents('albom.dat');
$section=explode('|||', $sectionAll);
$section=explode(' href=', $section[count($section)-1])
$nosection=$section[1]+1;
$data=$sectionAll . $_POST['n'] . ' href=' . $nosection . '|||';
$fp=fopen('albom.dat', "w");
fwrite($fp, $data);
echo '<html><head><meta http-equiv="Refresh" content="1; url=admin.php?p='. $pc .'"></head></html>';
}
echo $pc;
?>
т.е. вроде все верно, ищите ошибки
Код:
$section=explode('|||', $sectionAll);
$section=explode(' href=', $section[count($section)-1]) // Тут нет ;
$nosection=$section[1]+1;
$section=explode(' href=', $section[count($section)-1]) // Тут нет ;
$nosection=$section[1]+1;