如何在php echo中点击按钮链接?

时间:2018-01-24 19:34:23

标签: php html forms echo

我有这个代码,但每次点击按钮时,它都会指向import requests try: resp = requests.get('http://169.254.169.254', timeout=0.001) print 'In AWS' except: print 'Not in AWS' 忽略其他细节。 我尝试过使用javascript,但似乎使用表单操作是我最接近的方法:

story.php

1 个答案:

答案 0 :(得分:0)

您错过了方法,无论是发布还是获取



<form action="./story.php?u=12" method="post" >
<button type='submit' class='w3-button w3-theme-d1 w3-margin-bottom'><i class='fa fa-thumbs-up'></i> $likes  Like</button> 

<button type='submit' class='w3-button w3-theme-d2 w3-margin-bottom'><i class='fa fa-comment'></i>  Comment $comments</button> 
    
</form>
&#13;
&#13;
&#13;

现在工作正常