dongqun5769 2013-12-15 10:34
浏览 1622
已采纳

PHP url链接变量

I have the following problem.

I do a while mysql_fetch_arry function to get values from a table.

And i want at each line, in the end, a text field (ammount) and a button (add).

Code looks like this:

<?php while($info = mysql_fetch_array( $data )): ?>
<td id="articlenr" class="width1left"><a href="www.google.de\<?php echo $info['articlenr'] ?>"><?php echo $info['articlenr'] ?> </a></td>
<td class="width2center"><?php echo $info['stock']. " / " .$info['minstock'] ?></td>
<?php endwhile ?>

The second line is for article details, what is working.

So the problem is how can i function wich does a onclick Event on the button and the textfield on each line.

on button click should happen:

  1. get value from textfield "ammount" (this line) and Articlenr (this line)
  2. build a link wich ist "....\add.php?article=articlenr(from this line)&ammount=ammount(from this line) 3.open a new window

Thank you for your help :)

  • 写回答

1条回答 默认 最新

  • doudi1978 2013-12-15 11:00
    关注
    <?php while($info = mysql_fetch_array( $data )): ?>
    <td class="width1left"><a href="www.google.de\<?php echo $info['articlenr'] ?>"><?php echo $info['articlenr'] ?> </a></td>
    <td class="width2center"><?php echo $info['stock']. " / " .$info['minstock'] ?></td>
    <td><input type="text" id="amount<?php echo $info['articlenr'] >?"></td>
    <td><input typ="button" value="add" onclick="openWindow('<?php echo $info['articlenr'] ?>');"></td>
    <?php endwhile ?>
    
    <script>
    function openWindow(articlenr) {
        var amount = document.getElementById('amount'+articlenr).value;
        var url = ".../add.php?article="+articlenr+"&ammount="+amount;
        window.open(url);
    }
    </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集