<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Форум PHP-MyAdmin.RU &mdash; Как сделать на три фото ?]]></title>
	<link rel="self" href="https://forum.php-myadmin.ru/extern.php?action=feed&amp;tid=3266&amp;type=atom" />
	<updated>2014-04-02T12:25:59Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.php-myadmin.ru/viewtopic.php?id=3266</id>
		<entry>
			<title type="html"><![CDATA[Re: Как сделать на три фото ?]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=24586#p24586" />
			<content type="html"><![CDATA[<p>Смотрите пример, там все ясно описано.<br /></p><div class="codebox"><pre><code>&lt;form action=&quot;file-upload.php&quot; method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;&gt;
  Файлы:&lt;br /&gt;
  &lt;input name=&quot;userfile[]&quot; type=&quot;file&quot; /&gt;&lt;br /&gt;
  &lt;input name=&quot;userfile[]&quot; type=&quot;file&quot; /&gt;&lt;br /&gt;
  &lt;input type=&quot;submit&quot; value=&quot;Отправить&quot; /&gt;
&lt;/form&gt;</code></pre></div><p>Например, предположим, что были загружены файлы /home/test/review.html и /home/test/xwp.out. В таком случае переменная $_FILES[&#039;userfile&#039;][&#039;name&#039;][0] будет установлена значением review.html, а переменная $_FILES[&#039;userfile&#039;][&#039;name&#039;][1] - значением xwp.out. Аналогично, переменная $_FILES[&#039;userfile&#039;][&#039;size&#039;][0] будет содержать размер файла review.html и так далее.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2014-04-02T12:25:59Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=24586#p24586</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Как сделать на три фото ?]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=24585#p24585" />
			<content type="html"><![CDATA[<p>В примере что Вы мне присылали ? Там еще не разобрался. Свой код переделываю - Вот задача, знать бы - разрешима она ? Я уже сколько вариантов перебрал, прикрепляет либо первую, либо третью, либо вообще пишет ошибку и все. Вот код еще раз переделанный, что не так подскажите ? Доска без БД, на файлах, я думаю может переделать ?&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$foto=&quot;&quot;; $fotoksize=&quot;&quot;; $size[0]=&quot;&quot;; $size[1]=&quot;&quot;;<br />/// Добавляем ФОТО к объявлению!<br />if ($fotoadd==TRUE) { if (isset($_COOKIE[&#039;wrbcookies&#039;]) or $fotoaddany==TRUE) {</p><p>$allfotoname=&quot;&quot;;</p><p>$filename=$_FILES[&quot;file1&quot;][&#039;name&#039;]; // определяем имя ЗАГРУЖАЕМОГО файла</p><p>$filename=$_FILES[&quot;file2&quot;][&#039;name&#039;]; // определяем имя ЗАГРУЖАЕМОГО файла</p><p>$filename=$_FILES[&quot;file3&quot;][&#039;name&#039;]; // определяем имя ЗАГРУЖАЕМОГО файла</p><p>$fotoname=$_FILES[&quot;file1&quot;][&#039;name&#039;]; // определяем имя файла<br />$foto=$fotoname;</p><p>$fotoname=$_FILES[&quot;file2&quot;][&#039;name&#039;]; // определяем имя файла<br />$foto=$fotoname;</p><p>$fotoname=$_FILES[&quot;file3&quot;][&#039;name&#039;]; // определяем имя файла<br />$foto=$fotoname;</p><p>$fotosize=$_FILES[&quot;file1&quot;][&#039;size&#039;]; // Запоминаем размер файла</p><p>$fotosize=$_FILES[&quot;file2&quot;][&#039;size&#039;]; // Запоминаем размер файла</p><p>$fotosize=$_FILES[&quot;file3&quot;][&#039;size&#039;]; // Запоминаем размер файла</p><p>// проверяем расширение файла<br />$valid_types = array(&quot;gif&quot;,&quot;jpg&quot;,&quot;png&quot;,&quot;jpeg&quot;);&nbsp; // допустимые расширения<br />$ext = strtolower(substr($fotoname, 1 + strrpos($fotoname, &quot;.&quot;)));<br />if (!in_array($ext, $valid_types)) {echo &#039;&lt;B&gt;ФАЙЛ НЕ загружен.&lt;/B&gt; Возможные причины:&lt;BR&gt;<br />- разрешена загрузка только файлов с такими расширениями: gif, jpg, jpeg, png&lt;BR&gt;<br />- Вы пытаетесь загрузить не графический файл;&lt;BR&gt;<br />- неверно введён адрес или выбран файл;&lt;/B&gt;&lt;BR&gt;&#039;; exit;}</p><br /><p>//&nbsp; &nbsp; &nbsp; ЗАЩИТЫ от ВЗЛОМА (ФОТО)</p><p>// 1. считаем кол-во точек в выражении - если большей одной - СВОБОДЕН!<br />$findtchka=substr_count($fotoname, &quot;.&quot;); if ($findtchka&gt;1) {echo &quot;ТОЧКА встречается в имени файла $findtchka раз(а). Это ЗАПРЕЩЕНО! &lt;BR&gt;\r\n&quot;;}</p><p>// 2. если в имени есть .php, .html, .htm - свободен! <br />$bago=&quot;Извините. В имени ФАйла &lt;B&gt;запрещено&lt;/B&gt; использовать .php, .html, .htm&quot;;<br />if (preg_match(&quot;/\.php/i&quot;,$fotoname))&nbsp; {echo &quot;Вхождение &lt;B&gt;\&quot;.php\&quot;&lt;/B&gt; найдено. $bago&quot;; exit;}<br />if (preg_match(&quot;/\.html/i&quot;,$fotoname)) {echo &quot;Вхождение &lt;B&gt;\&quot;.html\&quot;&lt;/B&gt; найдено. $bago&quot;; exit;}<br />if (preg_match(&quot;/\.htm/i&quot;,$fotoname))&nbsp; {echo &quot;Вхождение &lt;B&gt;\&quot;.htm\&quot;&lt;/B&gt; найдено. $bago&quot;; exit;}</p><p>// 3. </p><p>// 4. Проверяем, может быть файл с таким именем уже есть на сервере<br />if (file_exists(&quot;$fotodir/$foto&quot;)) {exit(&quot;Файл с таким именем уже существует на сервере! Измините имя на другое!&quot;);}<br />// Конец защит по имени файла</p><p>$fotoksize=round($fotosize/10.24)/100; // размер ЗАГРУЖАЕМОГО ФОТО в Кб.<br />$fotomax=round($max_file_size/10.24)/100; // максимальный размер фото в Кб.<br />if ($fotoksize&gt;$fotomax) {exit(&quot;Вы превысили допустимый размер фото! &lt;BR&gt;&lt;B&gt;Максимально допустимый&lt;/B&gt; размер фото: &lt;B&gt;$fotomax &lt;/B&gt;Кб.&lt;BR&gt; &lt;B&gt;Вы пытаетесь&lt;/B&gt; загрузить изображение: &lt;B&gt;$fotoksize&lt;/B&gt; Кб!&quot;);}</p><p>if&nbsp; &nbsp;($fotosize&gt;&quot;0&quot; and $fotosize&lt;$max_file_size) {<br />&nbsp; &nbsp; &nbsp;copy($_FILES[&quot;file1&quot;][&#039;tmp_name&#039;], &quot;$fotodir/$fotoname&quot;);<br />&nbsp; &nbsp; &nbsp;print &quot;&lt;br&gt;&lt;br&gt;Фото УСПЕШНО загружено: $fotoname (Размер: $fotosize байт)&quot;;}<br />else {exit(&quot;&lt;B&gt;Файл НЕ ЗАГРУЖЕН - ошибка СЕРВЕРА! Обратитесь к администратору!&lt;B&gt;&quot;);}</p><p>// Проверяем размер фото. Если &quot;габариты&quot; меньше 100 х 100 - то ничего с ним не делаем<br />$size = getimagesize(&quot;$fotodir/$foto&quot;);</p><p>// блок делает мальное изображение исходной фотки - в качестве превьюшки<br />$smallfoto=&quot;$foto&quot;;<br />if ($size[0]&gt;100 or $size[1]&gt;100) { $smallfoto=&quot;sm-$foto&quot;;<br />if (img_resize(&quot;$fotodir/$foto&quot;, &quot;$fotodir/$smallfoto&quot;, 150, 120))&nbsp; echo &#039;Изображение масштабировано успешно&#039;; else&nbsp; echo &#039;Масштабирование невозможно - ошибка на хостинге!&#039;;<br />}<br />} else $smallfoto=&quot;&quot;;<br />$allfotoname.=&quot;$filename|&quot;;</p><p>/// Конец блока добавления ФОТО<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($fotoadd==TRUE) { if (isset($_COOKIE[&#039;wrbcookies&#039;]) or $fotoaddany==TRUE) {<br />$maxfile=round($max_file_size/10.24)/100;<br />print&quot;&lt;TR class=row1&gt;&lt;TD&gt;Прикрепить фото:&lt;BR&gt;(допустимые типы: gif, jpg, png,&lt;BR&gt; размер менее $maxfile Кб.)&lt;/TD&gt;&lt;TD&gt;<br />&lt;FONT color=#ff0000&gt;*&lt;/FONT&gt;&lt;input type=file size=50 class=maxiinput name=file1&gt;&lt;br&gt;<br />&lt;FONT color=#ff0000&gt;* Фото будет масштабировано до разрешения&lt;br&gt; 145 х 120 для отображения в рубрикаторе&lt;/FONT&gt;&lt;br&gt;<br />&lt;/TD&gt;&lt;/TR&gt;&quot;; } }</p><p>if ($fotoadd==TRUE) { if (isset($_COOKIE[&#039;wrbcookies&#039;]) or $fotoaddany==TRUE) {<br />$maxfile=round($max_file_size/10.24)/100;<br />print&quot;&lt;TR class=row1&gt;&lt;TD&gt;Прикрепить фото:&lt;BR&gt;(допустимые типы: gif, jpg, png,&lt;BR&gt; размер менее $maxfile Кб.)&lt;/TD&gt;&lt;TD&gt;<br />&lt;FONT color=#ff0000&gt;*&lt;/FONT&gt;&lt;input type=file size=50 class=maxiinput name=file2&gt;&lt;br&gt;<br />&lt;FONT color=#ff0000&gt;* Фото будет масштабировано до разрешения&lt;br&gt; 145 х 120 для отображения в рубрикаторе&lt;/FONT&gt;&lt;br&gt;<br />&lt;/TD&gt;&lt;/TR&gt;&quot;; } }</p><p>if ($fotoadd==TRUE) { if (isset($_COOKIE[&#039;wrbcookies&#039;]) or $fotoaddany==TRUE) {<br />$maxfile=round($max_file_size/10.24)/100;<br />print&quot;&lt;TR class=row1&gt;&lt;TD&gt;Прикрепить фото:&lt;BR&gt;(допустимые типы: gif, jpg, png,&lt;BR&gt; размер менее $maxfile Кб.)&lt;/TD&gt;&lt;TD&gt;<br />&lt;FONT color=#ff0000&gt;*&lt;/FONT&gt;&lt;input type=file size=50 class=maxiinput name=file3&gt;&lt;br&gt;<br />&lt;FONT color=#ff0000&gt;* Фото будет масштабировано до разрешения&lt;br&gt; 145 х 120 для отображения в рубрикаторе&lt;/FONT&gt;&lt;br&gt;<br />&lt;/TD&gt;&lt;/TR&gt;&quot;; } }</p><p>echo&#039;&lt;TR class=row1&gt;&lt;TD colspan=2 align=middle&gt;&lt;INPUT class=longok type=submit value=Сохранить&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/FORM&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&#039;;<br />}<br />}</p>]]></content>
			<author>
				<name><![CDATA[ROM710]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=5851</uri>
			</author>
			<updated>2014-04-02T09:23:07Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=24585#p24585</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Как сделать на три фото ?]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=24584#p24584" />
			<content type="html"><![CDATA[<p>Смотрите пример. Там массив глобальный $_FILES надо разбирать, а перед этим правильно прописать HTML для загрузки нескольких файлов.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2014-04-02T05:01:22Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=24584#p24584</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Как сделать на три фото ?]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=24583#p24583" />
			<content type="html"><![CDATA[<p>$foto=&quot;&quot;; $fotoksize=&quot;&quot;; $size[0]=&quot;&quot;; $size[1]=&quot;&quot;;<br />/// Добавляем ФОТО к объявлению!<br />if ($fotoadd==TRUE) { if (isset($_COOKIE[&#039;wrbcookies&#039;]) or $fotoaddany==TRUE) {</p><p>$allfotoname=&quot;&quot;;</p><p>$filename=$_FILES[&quot;file1&quot;][&#039;name&#039;]; // определяем имя ЗАГРУЖАЕМОГО файла</p><p>if (strlen($filename)&gt;2) {</p><p>$fotoname=$_FILES[&quot;file1&quot;][&#039;name&#039;]; // определяем имя файла<br />$foto=$fotoname;</p><p>$fotosize=$_FILES[&quot;file1&quot;][&#039;size&#039;]; // Запоминаем размер файла</p><p>// проверяем расширение файла<br />$valid_types = array(&quot;gif&quot;,&quot;jpg&quot;,&quot;png&quot;,&quot;jpeg&quot;);&nbsp; // допустимые расширения<br />$ext = strtolower(substr($fotoname, 1 + strrpos($fotoname, &quot;.&quot;)));<br />if (!in_array($ext, $valid_types)) {echo &#039;&lt;B&gt;ФАЙЛ НЕ загружен.&lt;/B&gt; Возможные причины:&lt;BR&gt;<br />- разрешена загрузка только файлов с такими расширениями: gif, jpg, jpeg, png&lt;BR&gt;<br />- Вы пытаетесь загрузить не графический файл;&lt;BR&gt;<br />- неверно введён адрес или выбран файл;&lt;/B&gt;&lt;BR&gt;&#039;; exit;}</p><br /><p>//&nbsp; &nbsp; &nbsp; ЗАЩИТЫ от ВЗЛОМА (ФОТО)</p><p>// 1. считаем кол-во точек в выражении - если большей одной - СВОБОДЕН!<br />$findtchka=substr_count($fotoname, &quot;.&quot;); if ($findtchka&gt;1) {echo &quot;ТОЧКА встречается в имени файла $findtchka раз(а). Это ЗАПРЕЩЕНО! &lt;BR&gt;\r\n&quot;;}</p><p>// 2. если в имени есть .php, .html, .htm - свободен! <br />$bago=&quot;Извините. В имени ФАйла &lt;B&gt;запрещено&lt;/B&gt; использовать .php, .html, .htm&quot;;<br />if (preg_match(&quot;/\.php/i&quot;,$fotoname))&nbsp; {echo &quot;Вхождение &lt;B&gt;\&quot;.php\&quot;&lt;/B&gt; найдено. $bago&quot;; exit;}<br />if (preg_match(&quot;/\.html/i&quot;,$fotoname)) {echo &quot;Вхождение &lt;B&gt;\&quot;.html\&quot;&lt;/B&gt; найдено. $bago&quot;; exit;}<br />if (preg_match(&quot;/\.htm/i&quot;,$fotoname))&nbsp; {echo &quot;Вхождение &lt;B&gt;\&quot;.htm\&quot;&lt;/B&gt; найдено. $bago&quot;; exit;}</p><p>// 3. </p><p>// 4. Проверяем, может быть файл с таким именем уже есть на сервере<br />if (file_exists(&quot;$fotodir/$foto&quot;)) {exit(&quot;Файл с таким именем уже существует на сервере! Измините имя на другое!&quot;);}<br />// Конец защит по имени файла</p><p>$fotoksize=round($fotosize/10.24)/100; // размер ЗАГРУЖАЕМОГО ФОТО в Кб.<br />$fotomax=round($max_file_size/10.24)/100; // максимальный размер фото в Кб.<br />if ($fotoksize&gt;$fotomax) {exit(&quot;Вы превысили допустимый размер фото! &lt;BR&gt;&lt;B&gt;Максимально допустимый&lt;/B&gt; размер фото: &lt;B&gt;$fotomax &lt;/B&gt;Кб.&lt;BR&gt; &lt;B&gt;Вы пытаетесь&lt;/B&gt; загрузить изображение: &lt;B&gt;$fotoksize&lt;/B&gt; Кб!&quot;);}</p><p>if&nbsp; &nbsp;($fotosize&gt;&quot;0&quot; and $fotosize&lt;$max_file_size) {<br />&nbsp; &nbsp; &nbsp;copy($_FILES[&quot;file1&quot;][&#039;tmp_name&#039;], &quot;$fotodir/$fotoname&quot;);<br />&nbsp; &nbsp; &nbsp;print &quot;&lt;br&gt;&lt;br&gt;Фото УСПЕШНО загружено: $fotoname (Размер: $fotosize байт)&quot;;}<br />else {exit(&quot;&lt;B&gt;Файл НЕ ЗАГРУЖЕН - ошибка СЕРВЕРА! Обратитесь к администратору!&lt;B&gt;&quot;);}</p><p>// Проверяем размер фото. Если &quot;габариты&quot; меньше 100 х 100 - то ничего с ним не делаем<br />$size = getimagesize(&quot;$fotodir/$foto&quot;);</p><p>// блок делает мальное изображение исходной фотки - в качестве превьюшки<br />$smallfoto=&quot;$foto&quot;;<br />if ($size[0]&gt;100 or $size[1]&gt;100) { $smallfoto=&quot;sm-$foto&quot;;<br />if (img_resize(&quot;$fotodir/$foto&quot;, &quot;$fotodir/$smallfoto&quot;, 150, 120))&nbsp; echo &#039;Изображение масштабировано успешно&#039;; else&nbsp; echo &#039;Масштабирование невозможно - ошибка на хостинге!&#039;;<br />}<br />} else $smallfoto=&quot;&quot;;<br />$allfotoname.=&quot;$filename|&quot;;</p><p>/// Конец блока добавления ФОТО</p>]]></content>
			<author>
				<name><![CDATA[ROM710]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=5851</uri>
			</author>
			<updated>2014-04-01T12:46:15Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=24583#p24583</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Как сделать на три фото ?]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=24582#p24582" />
			<content type="html"><![CDATA[<p>У меня по другому - $foto=</p>]]></content>
			<author>
				<name><![CDATA[ROM710]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=5851</uri>
			</author>
			<updated>2014-04-01T12:44:20Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=24582#p24582</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Как сделать на три фото ?]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=24563#p24563" />
			<content type="html"><![CDATA[<p>Решение смотрите здесь:<br /><a href="http://lv.php.net/manual/ru/features.file-upload.multiple.php">http://lv.php.net/manual/ru/features.fi … ltiple.php</a></p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2014-03-31T05:46:35Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=24563#p24563</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Как сделать на три фото ?]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=24559#p24559" />
			<content type="html"><![CDATA[<p>Здравствуйте, Кто подскажет - делаю доску объявлений, как бы все нориально, но прикрепляет только одно из трех фото, а две не работают, вчем причина может быть ?</p>]]></content>
			<author>
				<name><![CDATA[ROM710]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=5851</uri>
			</author>
			<updated>2014-03-30T15:36:19Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=24559#p24559</id>
		</entry>
</feed>
