Jump to content
  • 0

Как динамически менять имя в $_POST


bgraf
 Share

Question

Здравствуйте!

Я динамически составил SELECTS


<table>
<?php
while ($row=mysql_fetch_array($result))
{
$product_name = $row["prd_name"];
$key_product_name = $row["prd_key"];

echo'<tr>
<td>
<font >'.$prd_name.'</font>
</td>
<td>
<select name="'.$prd_key.'" dir="ltr" lang="ru" id="font">
<option value="0" selected="selected">Нет</option>
<option value="'.$prd_key.':::">Да</option>
</select>
</td>
</tr>';
}
?>
</table>

После того как пользователь выбрал нужные пункты, я хочу составит string, в котором я сохраню все пункты которые выбрал пользователь и в последствии сохраню в базе.

И тут то у меня проблема что-то не могу понять как сделать:


sqlite_rewind($result); //перевожу pointer на первую запись
while ($row=mysql_fetch_array($result))
{
if($_POST[$prd_key]!='0')// вот тут и проблема как сделать динамику?????
{
$str_products .= $_POST[$prd_key];
}
}

prd_key - идентично

Подскажите как решить задачу.

Спасибо всем.

Edited by bgraf
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Прошу прощения!

Смотрю в книгу вижу фигу.

Переменную не ту вставлял, вот так все работает

sqlite_rewind($result); //перевожу pointer на первую запись
while ($row=mysql_fetch_array($result))
{
if($_POST[$row[prd_key]]!='0')
{
$str_products .= $_POST[$row[prd_key]];
}
}

Всем спасибо, если тема не нужна, прошу удолить

Edited by bgraf
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