Файл: inc/tools/text_combinator/index.php
Строк: 51
<form action="" method="POST" enctype="multipart/form-data" name="form1" id="form1">
<table width="100%" border="0" align="center" class="ttable">
<tr>
<td bgcolor="#D4D0C8"><strong>Комбинатор</strong></td>
</tr>
<tr>
<td><?php
if(!is_writable('inc/tools/text_combinator'))
{
echo 'Для работы скрипта необходимо установить права на запись (chmod 777) для папки <i>/text_combinator</i> !<br> ';
exit;
}
?></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>Файл 1 :
<label>
<input name="file1" type="file" id="file1" />
</label></td>
</tr>
<tr>
<td>Файл 2:
<label>
<input type="file" name="file2" />
</label></td>
</tr>
<tr>
<td><input name="act" type="hidden" id="act" value="go" />
<input type="submit" name="Submit" value="Комбинировать" /></td>
</tr>
<tr>
<td><?
if($_POST['act']=='go')
{
$uploadfile1 = basename($_FILES['file1']['name']);
$uploadfile2 = basename($_FILES['file2']['name']);
if (move_uploaded_file($_FILES['file1']['tmp_name'], 'inc/tools/text_combinator/first.txt'))
{
echo 'Файл 1 загружен...<br>';
}
else
{
echo 'Файл 1 не загружен...'; exit;
}
if (move_uploaded_file($_FILES['file2']['tmp_name'], 'inc/tools/text_combinator/second.txt'))
{
echo 'Файл 2 загружен...<br>';
}
else
{
echo 'Файл 2 не загружен...'; exit;
}
ob_flush(); flush();
$as=fopen('inc/tools/text_combinator/combined.txt', "w");
fclose($as);
$fs=file('inc/tools/text_combinator/first.txt');
$fs2=file('inc/tools/text_combinator/second.txt');
foreach ($fs as $unu)
{
$towrite="";
foreach ($fs2 as $doi)
{
$towrite.=trim($unu)." ".trim($doi)."rn";
}
$as=fopen('inc/tools/text_combinator/combined.txt', "a");
fwrite($as, $towrite);
fclose($as);
}
echo "Комбинатор закончил свою работу...<br><br>
<a href='text_combinator/combined.txt' target='_blank'>Скачать результат >></a>";
}
?></td>
</tr>
</table>
</form>