在这里,我想分享static content
和'网址'到twitter,我正在尝试,但我无法分享两者,请检查我的代码,我做错了什么,如果有人知道意味着请我更新代码,
假设我分开分享意味着它工作正常。分离意味着我只分享静态内容意味着工作正常,假设我正在分享一个网址意味着工作,当我尝试这两个不工作时
<html>
<body>
<?php
$static_content = "This photo is awesome! Check it out below link";
$url = "http://g2evolution.in/spreadit_API/event-details.php?id=MQ==&postedCustonerId=MQ==&eventType=UHVibGlj";
?>
<br><br>
<a href="https://twitter.com/intent/tweet?status=<?php echo $static_content?>">Content Sharing</a><br><br>
<a href="https://twitter.com/intent/tweet?url=<?php echo $url?>">Link Sharing</a> <br></br>
<a href="https://twitter.com/intent/tweet?status=<?php echo $static_content.'&url='.$url ?>">Share Both on Twitter</a>
</body>
</html>
&#13;