Jump to content
  • 0

JS. AddFavorite. Переменная в цикле.


SergRonin
 Share

Question

Имеется запрос к БД, и вывод информации в таблицу, построчно.

В каждой строке имеется картинка-ссылка (добавление в избранное), с таким кодом:

  <script>
function add2Fav (x){
if (document.all && !window.opera) {
if (typeof window.external == \"object\") {
window.external.AddFavorite ('http://site.ru/m.php?id=$ids', 'Объявление $ids');
return true;
}
else return false;
}
else{
x.href='http://site.ru/m.php?id=$ids';
x.title='Объявление $ids';
x.rel = \"sidebar\";
return true;
}
}
</script>

<a href=\"#\" onClick=\"add2Fav (this)\"><b><img border=\"0\" src=\"images/add.png\"></a>

Допустим выводится 10 строк, но при добавлении в избранное, ссылка получается с последним id из БД (тоесть был цикл, он закончился,и в $ids=последний id в цикле).

Вопрос: где и что исправить, что-бы картинка-ссылка имела текущий id (выводим строку, в поле1 ID допустим стоит "6", и получается ссылка должна быть http://site.ru/m.php?id=6, и так далее), во время выполнения цикла, а не последний...?

Не очень понятно почему JS не пишет разные ID, а формирует ссылку как-бы не "внутри" цикла, а уже после его завершения...ведь формирование ссылки находится внутри цикла, с перебором разных ID...

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

При чем тут JavaScript? Где цикл?

$result = mysql_query("SELECT.......");
$res=mysql_query($sql);
while ($row = mysql_fetch_array($res))
{ $name=$row['name']; $ids=$row['id'];
echo "<tr>
<td>$name</td>
<td>

<script>
function add2Fav (x){
if (document.all && !window.opera) {
if (typeof window.external == \"object\") {
window.external.AddFavorite ('http://site.ru/m.php?id=$ids', 'Объявление $ids');
return true;
}
else return false;
}
else{
x.href='http://site.ru/m.php?id=$ids';
x.title='Объявление $ids';
x.rel = \"sidebar\";
return true;
}
}
</script>

<a href=\"#\" onClick=\"add2Fav (this)\"><b><img border=\"0\" src=\"images/add.png\"></a>

</td>
</tr>";
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy