<?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=2150&amp;type=atom" />
	<updated>2011-04-23T12:00:58Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.php-myadmin.ru/viewtopic.php?id=2150</id>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16052#p16052" />
			<content type="html"><![CDATA[<p>спасибо!!!все заработало!</p>]]></content>
			<author>
				<name><![CDATA[VitoS]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3396</uri>
			</author>
			<updated>2011-04-23T12:00:58Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16052#p16052</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16051#p16051" />
			<content type="html"><![CDATA[<p>Все верно, только необходимо вызвать функцию повторно.<br /></p><div class="codebox"><pre><code>&lt;script type=&quot;text/javascript&quot;&gt;
// Встраиваем все внутрь функции autocomplete().
function autocomplete() {
     $(function() {
        $(&#039;.autocomplete&#039;).autocomplete({
...
       });
    });
}
// Вызываем первый раз.
autocomplete();
&lt;/script&gt;</code></pre></div><p>Затем в функции AddItem() добавляем вызов autocomplete() после строки:<br /></p><div class="codebox"><pre><code>div.insertBefore(newnode,button);
autocomplete();</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-04-23T11:50:36Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16051#p16051</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16049#p16049" />
			<content type="html"><![CDATA[<p>сделал так:</p><p>&lt;script language=&quot;javascript&quot;&gt;<br />var num=1;<br />function AddItem() {<br />&nbsp; div=document.getElementById(&quot;num&quot;);<br />&nbsp; button=document.getElementById(&quot;add_pole&quot;);<br />&nbsp; num++;<br />&nbsp; newitem=&quot;&lt;strong&gt;Мероприятие &quot; + num + &quot;: &lt;/strong&gt;&quot;;<br />&nbsp; newitem+=&quot;&lt;input type=\&quot;text\&quot; name=\&quot;item&quot; + num;<br />&nbsp; newitem+=&quot;\&quot; size=\&quot;15\&quot; class=\&quot;autocomplete\&quot;&gt;&lt;br&gt;&quot;;<br />&nbsp; newnode=document.createElement(&quot;span&quot;);<br />&nbsp; newnode.innerHTML=newitem;<br />&nbsp; div.insertBefore(newnode,button);<br />}<br />&lt;/script&gt;<br />&lt;div ID=&quot;num&quot;&gt;<br />&lt;strong&gt;Мероприятие 1: &lt;/strong&gt;&lt;input type=&quot;text&quot; name=&quot;item1&quot; size=&quot;15&quot; class=&quot;autocomplete&quot;&gt;&lt;br&gt;<br />&lt;input type=&quot;button&quot; value=&quot;Добавить поле&quot; onClick=&quot;AddItem();&quot; ID=&quot;add_pole&quot;&gt;<br />&lt;/div&gt;</p><p>опять же работает только в случае с одним полем, которое задается вручную...</p>]]></content>
			<author>
				<name><![CDATA[VitoS]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3396</uri>
			</author>
			<updated>2011-04-23T10:43:44Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16049#p16049</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16043#p16043" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>VitoS сказал:</cite><blockquote><p>а почему не работает для всех полей?</p></blockquote></div><p>Не работает, потому что на странице может быть только один уникальный идентификатор (id).</p><p>Попробуйте через имя класса сделать. Не знаю будет это работать или нет, но пробуйте.<br />У каждого поля ввода с автозаполнением добавьте параметр class=&quot;autocomplete&quot;, затем исправьте строку:<br />$(&#039;#autocomplete&#039;).autocomplete({<br />На<br />$(&#039;.autocomplete&#039;).autocomplete({</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-04-22T22:04:28Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16043#p16043</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16039#p16039" />
			<content type="html"><![CDATA[<p>подскажите пожалуйста, а можно как-то сделать, чтобы в каждом появлявшемся поле действовал метод автозаполнения?..ну вот то есть есть у меня скрипт :</p><p>echo &#039;&lt;script language=&quot;javascript&quot;&gt;<br />var num=1;<br />function AddItem() {<br />&nbsp; div=document.getElementById(&quot;num&quot;);<br />&nbsp; button=document.getElementById(&quot;add_pole&quot;);<br />&nbsp; num++;<br />&nbsp; newitem=&quot;&lt;strong&gt;Мероприятие &quot; + num + &quot;: &lt;/strong&gt;&quot;;<br />&nbsp; newitem+=&quot;&lt;input type=\&quot;text\&quot; name=\&quot;item&quot; + num;<br />&nbsp; newitem+=&quot;\&quot; size=\&quot;15\&quot; <em>id=\&quot;autocomplete\&quot;</em>&gt;&lt;br&gt;&quot;;<br />&nbsp; newnode=document.createElement(&quot;span&quot;);<br />&nbsp; newnode.innerHTML=newitem;<br />&nbsp; div.insertBefore(newnode,button);<br />}<br />&lt;/script&gt;&#039;;<br />echo &#039;&lt;div ID=&quot;num&quot;&gt;<br />&lt;strong&gt;Мероприятие 1: &lt;/strong&gt;&lt;input type=&quot;text&quot; name=&quot;item1&quot; size=&quot;15&quot;&nbsp; <em>id=&quot;autocomplete&quot;</em>&gt;&lt;br&gt;<br />&lt;input type=&quot;button&quot; value=&quot;Добавить поле&quot; onClick=&quot;AddItem();&quot; ID=&quot;add_pole&quot;&gt;<br />&lt;/div&gt;&#039;;</p><p><em>id=\&quot;autocomplete\&quot;</em>-это сслыка на другой скрипт...в этом случае работет только здесь: &lt;strong&gt;Мероприятие 1: &lt;/strong&gt;&lt;input type=&quot;text&quot; name=&quot;item1&quot; size=&quot;15&quot;&nbsp; <em>id=&quot;autocomplete&quot;</em>&gt;&lt;br&gt;....а почему не работает для всех полей?</p>]]></content>
			<author>
				<name><![CDATA[VitoS]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3396</uri>
			</author>
			<updated>2011-04-22T13:09:38Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16039#p16039</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16035#p16035" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>VitoS сказал:</cite><blockquote><p>чтобы изменить размер шрифта нужно менять в файле *.js</p></blockquote></div><p>Размер шрифта наследуется от &lt;body&gt;, поэтому пропишите размер в стиле или внутри тега.<br /></p><div class="codebox"><pre><code>&lt;body style=&quot;font-size: 12px;&quot;&gt;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-04-22T08:38:42Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16035#p16035</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16032#p16032" />
			<content type="html"><![CDATA[<p>спасибо огроменное, все заработало! а чтобы изменить размер шрифта нужно менять в файле *.js или можно изменить в коде?..я пробовал использовать &lt;font size&gt;, но че-то не срабатывало..</p>]]></content>
			<author>
				<name><![CDATA[VitoS]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3396</uri>
			</author>
			<updated>2011-04-21T19:33:52Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16032#p16032</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16031#p16031" />
			<content type="html"><![CDATA[<p>Почти правильно, только цикл будет выглядеть так:<br /></p><div class="codebox"><pre><code>$a = array();
while ($row_del = mysql_fetch_array($res_dela)){
    $a[] = &#039;{label: &quot;&#039; . addslashes($row_del[&#039;Nazv&#039;]) . &#039;&quot;,&#039;
        .   &#039;value: &quot;&#039; . addslashes($row_del[&#039;Nazv&#039;]) . &#039;&quot;}&#039;;
}
if (count($a) &gt; 0) echo implode(&#039;,&#039;, $a);</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-04-21T19:10:28Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16031#p16031</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16027#p16027" />
			<content type="html"><![CDATA[<p>и даже в теге &lt;head&gt;?...</p><p>&lt;script type=&quot;text/javascript&quot;&gt;<br />&nbsp; &nbsp; &nbsp;$(function() {<br />&nbsp; &nbsp; &nbsp; &nbsp; $(&#039;#autocomplete&#039;).autocomplete({<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; source: [<br /><strong>&lt;?php<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; include(&#039;db_login.php&#039;);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $connection=mysql_connect($db_host,$db_username,$db_password);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mysql_query(&#039;SET NAMES utf8&#039;);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (!$connection)<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; die(&#039;Ошибка подключения к серверу баз данных&#039;);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $db_select=mysql_select_db($db_database);</strong></p><p><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (!$db_select)<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; die(&#039;База данных не найдена или отсутствует доступ&#039;);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; $dela=&#039;select Nazv from dela&#039;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; $res_dela=mysql_query($dela);<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; while ($row_del=mysql_fetch_array($res_dela)){<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; $dela_mas=$row_del[&#039;Nazv&#039;];<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; echo &#039;label: &quot;$dela_mas&quot;&#039;, <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#039;value: &quot;$dela_mas&quot;&#039;}<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; ?&gt;</strong><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;],<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; html:true<br />&nbsp; &nbsp; &nbsp; &nbsp;});<br />&nbsp; &nbsp; });<br />&nbsp; &nbsp; &lt;/script&gt;<br />так вообще можно делать?..немного не понимаю как быть с label и value..они должны задаваться в цикле?и в отдельном теге?</p>]]></content>
			<author>
				<name><![CDATA[VitoS]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3396</uri>
			</author>
			<updated>2011-04-21T16:58:07Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16027#p16027</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16019#p16019" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>VitoS сказал:</cite><blockquote><p> как этот массив строится и в каком месте задается?</p></blockquote></div><p>PHP код можно встроить в любом месте, поэтому выбирайте данные из БД и стройте массив.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-04-21T12:37:17Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16019#p16019</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16014#p16014" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>VitoS сказал:</cite><blockquote><p>в данном случае поиск происходит только по значениям вот этим</p></blockquote></div><div class="quotebox"><blockquote><p>Совершенно верно. Вы можете либо сформировать массив этих значений выбрав их из БД при генерации страницы, либо воспользоваться Ajax подгрузкой, что будет несколько сложнее в реализации.</p></blockquote></div><p>&lt;script&gt;<br />&nbsp; &nbsp; $(function() {<br />&nbsp; &nbsp; &nbsp; &nbsp; $( &quot;#autocomplete&quot; ).autocomplete({<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>source: [<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; label: &quot;aardvark 1&quot;, <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; value: &quot;aardvark 1&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; label: &quot;&lt;b&gt;apple 2&lt;/b&gt;&quot;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; value: &quot;apple 2&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; label: &quot;&lt;i&gt;atom 3&lt;/i&gt;&quot;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; value: &quot;atom 3&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ],<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; html: true<br />&nbsp; &nbsp; &nbsp; &nbsp; });</strong><br />&nbsp; &nbsp; });<br />&nbsp; &nbsp; &lt;/script&gt;</p><p>а как сделать, чтобы при генерации страницы формировался массив значений, по которому будет происходить поиск?скрипт же пишется в тегах &lt;head&gt;..разве там можно как-то задать подключение к базе данных или это нужно сделать в отдельном файле?...мне нужно сформировать массив мероприятий допустим:$sql=&#039;select nazv from dela&#039;. а как этот массив строится и в каком месте задается?<br /> подскажите пожалуйста неумному человеку..</p>]]></content>
			<author>
				<name><![CDATA[VitoS]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3396</uri>
			</author>
			<updated>2011-04-20T19:55:16Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16014#p16014</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16010#p16010" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>VitoS сказал:</cite><blockquote><p>я немного не понял, что эта строчка делает?</p></blockquote></div><p>Ссылку на примеры я уже давал, <a href="http://jqueryui.com/demos/autocomplete/">http://jqueryui.com/demos/autocomplete/</a><br />А что это у вас такое - я не могу знать.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-04-20T19:11:36Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16010#p16010</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16008#p16008" />
			<content type="html"><![CDATA[<p>у меня вывелась ошибка :</p><p>$(&quot;#autocomplete1&quot;).autocomplete is not a function<br />[Прерывать на этой ошибке] html: true </p><p>а вот сам скрипт:<br />&lt;script type=&quot;text/javascript&quot;&gt;<br />&nbsp; &nbsp; &nbsp;$(function() {<br />&nbsp; &nbsp; &nbsp; &nbsp; $(&#039;#autocomplete1&#039;).autocomplete({<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; source: [<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; label: &quot;aardvark 1&quot;, <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; value: &quot;aardvark 1&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; label: &quot;&lt;b&gt;apple 2&lt;/b&gt;&quot;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; value: &quot;apple 2&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; label: &quot;&lt;i&gt;atom 3&lt;/i&gt;&quot;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; value: &quot;atom 3&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ],<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; html: true<br />&nbsp; &nbsp; &nbsp; &nbsp; });<br />&nbsp; &nbsp; });<br />&nbsp; &nbsp; &lt;/script&gt;</p><p>нужно вообще убрать эту строчку?..и я немного не понял, что эта строчка делает?</p>]]></content>
			<author>
				<name><![CDATA[VitoS]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3396</uri>
			</author>
			<updated>2011-04-20T18:46:50Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16008#p16008</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16005#p16005" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>VitoS сказал:</cite><blockquote><p>это может быть из-за чего?</p></blockquote></div><p>Это может быть из-за неправильного подключения файлов скрипта в заголовке.</p><p>Если браузер выводит ошибки, то Firebug тем более будет это делать. Нажмите на жука и перейдите во вкладку Console.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-04-20T18:00:09Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16005#p16005</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: добавление записей в бд через форму]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=16003#p16003" />
			<content type="html"><![CDATA[<p>если я правильно понимаю Firebug должен выявить ошибки?...если так, то ошибок он не выводит..а браузер ругается на эту строчку&nbsp; <strong>$(&#039;#autocomplete&#039;).autocomplete({</strong>...пишет, что объект не поддерживает это свойство или метод...это может быть из-за чего?</p>]]></content>
			<author>
				<name><![CDATA[VitoS]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3396</uri>
			</author>
			<updated>2011-04-20T16:45:08Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=16003#p16003</id>
		</entry>
</feed>
