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>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分