dousui3124 2015-01-31 06:11
浏览 36
已采纳

PHP在textarea中绑定/显示特定记录

using DW CS6, I have a dynamic table in admin_inquiry.php, which displays rows of records. One of which is the Contact No, which is a link.

<td><a href="admin_sms.php?ContactNo=<?php echo $row_ContactUs['ContactNo'];?>">Send SMS</a></td>

When that is clicked, it goes to a new page, admin_sms.php, and it displays the corresponding contact no in a textfield.

<input name='number' type='text' id="number" value="<?php if(isset($_GET['ContactNo'])){echo $_GET['ContactNo'];}else{echo "";}?>">

My problem is, I also want to display the 'message' along with the 'ContactNo' in a textarea,kinda like what is displayed when sending emails,you can see the message and sender at the top. But also show only the 'ContactNo' on a separate textfield. How do I achieve that?

  • 写回答

1条回答 默认 最新

  • donglu8344812 2015-01-31 19:42
    关注

    Here's how to do it with jQuery:

    $("a").click(function() {
        var message = $("#msg").val();
        this.href += '&message=' + encodeURIComponent(message);
    });
    

    Then in the admin_sms.php script, you use $_GET['message'] to get the message to send.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部