带有 php 值的 Href 链接

发布于 2024-08-28 03:52:55 字数 456 浏览 9 评论 0原文

我有一个像下面这样的链接,

        <a href="#" onclick="window.open('http://www.twitter.com/home?status=Reading+Facebook share, Yahoo Buzz and Tweet this buttons for Blogger blogs+http://www.didiknow.com');">Tweet this</a>

我想在里面插入一个 php 变量值来表示状态 喜欢

          <a href="#" onclick="window.open('http://www.twitter.com/home?status=$markme_ddesc');">Tweet this</a>

怎么做?请帮我..

i am having a link like below

        <a href="#" onclick="window.open('http://www.twitter.com/home?status=Reading+Facebook share, Yahoo Buzz and Tweet this buttons for Blogger blogs+http://www.didiknow.com');">Tweet this</a>

i want to insert a php variable value inside for the status thing
like

          <a href="#" onclick="window.open('http://www.twitter.com/home?status=$markme_ddesc');">Tweet this</a>

how to do so?? please help me..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最美不过初阳 2024-09-04 03:52:55

你可以在那里回响它吗?

<?= $markme_ddesc ?>

you can just echo it in there?

<?= $markme_ddesc ?>
昵称有卵用 2024-09-04 03:52:55

您有多种方式,例如:

<a href="#" onclick="window.open('http://www.twitter.com/home?status=<?=$markme_ddesc?>">Tweet this</a>

<a href="#" onclick="window.open('http://www.twitter.com/home?status=<?php print($markme_ddesc);?>">Tweet this</a>

或(如果您在标签内)

print("<a href=\"#\" onclick=\"window.open('http://www.twitter.com/home?status=$markme_ddesc\">Tweet this</a>");

You have several ways, for example:

<a href="#" onclick="window.open('http://www.twitter.com/home?status=<?=$markme_ddesc?>">Tweet this</a>

or

<a href="#" onclick="window.open('http://www.twitter.com/home?status=<?php print($markme_ddesc);?>">Tweet this</a>

or (in case you are within the tags)

print("<a href=\"#\" onclick=\"window.open('http://www.twitter.com/home?status=$markme_ddesc\">Tweet this</a>");
难以启齿的温柔 2024-09-04 03:52:55

像这样使用

<a href="#" onclick="window.open('http://www.twitter.com/home?status=<?=$markme_ddesc?>">Tweet this</a>

note: status=<?=$markme_ddesc?>

Use LIKE THIS

<a href="#" onclick="window.open('http://www.twitter.com/home?status=<?=$markme_ddesc?>">Tweet this</a>

note: status=<?=$markme_ddesc?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文