[ Поиск ] - [ Пользователи ] - [ Календарь ]
Полная Версия: Как переменную РНР встроить в js
ant3627
Здравствуйте. Есть не очень громозкий скрипт "корзины товара", но чтобы работал в динамике, надо вставлять, выводимые из базы данные, а я не понимаю как скрестить PHP & JS. если это возможно, подскажите как.

Я попробовал так:

<? $i3 = 'ПИВО'; ?>
<form
action="скрипт_покупки.php" method="post" name="dobuy" >
<a
style="cursor:hand;" onclick="buy(this.id)" id="i1" info="Вода.">Вода</a><br>
<a
style="cursor:hand;" onclick="buy(this.id)" id="i2" info= "<? echo $i3 ?> "><? echo $i3 ?>Пиво</a><br>

первая строчка отображается правильно (номер и наименование товара отбражаются и в списке и в корзине, вторая ничего не отображает.
Наверное нужна функция из JS, а не "echo" ? какая?
l@pteff
В этом фрагменте ошибок не вижу, их нужно искать в других частях кода. Кстати вывод переменной здесь можно делать без echo через = и без атрибута info у ссылки (для чего он используется? впервые вижу <_< )

<a style="cursor:hand;" onclick="buy(this.id)" id="i2"><?=$i3?></a><br>

ant3627
info используется в функции. Вот полный код:

<html>

<head>
<title></title>

<style
type="text/css">
.sel_items {margin: 0px;}
</style>
<script
type="text/javascript">
<!-- //
toBuy = new Array();
Count = new Array();
bSumm = new Array();
function buy(item){
var tb = false;
for(i=0;i<toBuy.length;i++){
if(toBuy[i]==item){
tb = true;
break;
}}
if(!tb){
toBuy[toBuy.length] = item;
Count[Count.length] = 1;}
else{
Count[i]++;
}
if(!bSumm[item] && bSumm[item]!=0){
bSumm[item]=0;
document.getElementById("selected_items").innerHTML += "<p class='sel_items' id='s"+item+"'>"+document.getElementById(item).getAttribute("info")+" Кол-во: "+bSumm[item]+", <a style=\"cursor:crosshair;\" onclick=\"unBuy('"+item+"')\">Убрать</a></p>";
}
bSumm[item]++;
document.getElementById("s"+item).innerHTML = document.getElementById(item).getAttribute("info")+" Кол-во: "+bSumm[item]+", <a style=\"cursor:crosshair;\" onclick=\"unBuy('"+item+"')\">Убрать</a>";
document.getElementById("s"+item).style.display="";
}

function unBuy(item){
bSumm[item]--;
if(bSumm[item]==0){
document.getElementById("s"+item).style.display = "none";}

else{
document.getElementById("s"+item).innerHTML = document.getElementById(item).getAttribute("info")+" Кол-во: "+bSumm[item]+", <a style=\"cursor:crosshair;\" onclick=\"unBuy('"+item+"')\">Убрать</a>";
}
for(i=0;i<toBuy.length;i++){
if(toBuy[i]==item){
Count[i]--;
break;
}}}

function doBuy(){
if(Count.length>0){
for(i=0;i<toBuy.length;i++){
child = document.createElement("input");
child.type = "hidden";
child.name = "buyItem"+toBuy[i];
child.value = Count[i];
document.forms.dobuy.appendChild(child);
}
document.forms.dobuy.submit();
}else{
alert("Вы ничего не выбрали!");
}}

function page(url){
document.forms.other_page.action=url;
for(i=0;i<toBuy.length;i++){
child = document.createElement("input");
child.type = "hidden";
child.name = "buyItem"+toBuy[i];
child.value = Count[i];
document.forms.other_page.appendChild(child);
}
document.forms.other_page.submit();
}
// -->
</script>
</head>
<body>

<?

$i2='i2';
$i3='PIVO';
?>
<table
border="1" width="600">
<tr><td
widht="300">
<a
onclick="page('magnitols.php');">Магнитолы</a>
<a
onclick="page('samolets.php')">Самолеты</a>
<a
onclick="page('chemodans.php')">Чемоданы</a>
</td>
<td
widht="300" height="100" valign="top">
Ваши товары:<div id="selected_items"></div>
</td>
<tr>
<td
colspan="2">
<?
echo $i3 ?>
Товары для покупки:<br>
<form
action="скрипт_покупки.php" method="post" name="dobuy" >
<a
style="cursor:hand;" onclick="buy(this.id)" id="i1" info="Вода.">Вода</a><br>
<a
style="cursor:hand;" onclick="buy(this.id)" id="i2" info= "<? echo $i3 ?> "><? echo $i3 ?>Пиво</a><br>
<a
style="cursor:hand;" onclick="buy(this.id)" id="i3" info="Товар номер три.">Квас</a><br>
<a
style="cursor:hand;" onclick="buy(this.id)" id="i4" info="Товар номер четыре.">Увсус</a><br>
<a
style="cursor:hand;" onclick="buy(this.id)" id="i5" info="Товар номер пять.">Лимонад</a><br>
<hr>
<a
style="cursor:hand;" onclick="doBuy()">Купить выбранные</a>
</form>
<form
method="post" name="other_page">

</form>
</td></tr>
</table>

</body>


<!--
При покупке и переходе на другую страницу осуществляется отправка формой одинаковых данных на php скрипт который все обрабатывает.

Вы уж извините, но делать работу с куками сюда - это слишком даже для меня.
-->

</body>

</html>

Быстрый ответ:

 Графические смайлики |  Показывать подпись
Здесь расположена полная версия этой страницы.
Invision Power Board © 2001-2024 Invision Power Services, Inc.