<input type="button"
style="height: 40px; width: 185px; background-color:#4863A0;
Color:#FFFFFF;font-weight: bold; text-align:center"
value="Login using facebook"
onClick="parent.location='https://graph.facebook.com/oauth/authorize?type=user_agent&client_id=256953694326584&redirect_uri=**http://www.juboapp.com/**edit.php&scope=email,user_birthday,offline_access'">
这里我们需要用存储此链接的变量替换url“http://www.juboapp.com/”。这个变量来自另一个PHP文件。
如何用此变量替换此链接,以便它可以在给定链接上重定向。
答案 0 :(得分:1)
它简洁明了,替换:
带有http://www.juboapp.com/
的 <?php echo $yourvariable; ?>
但是,如果变量是在另一个脚本(脚本A)中建立的,那么您需要在(脚本B)中替换URL的脚本才能读取该变量 - 您需要include或{ {3}}第二个脚本(脚本A)或另一个脚本(脚本A)中的第一个脚本(脚本A)将变量分配给会话或cookie。
答案 1 :(得分:1)
声明变量并在其中存储url。并使用以下内容:
$dynamicUrl = "http://www.google.com/";
<input type="button" style="height: 40px; width: 185px; background-color:#4863A0;
Color:#FFFFFF;font-weight: bold; text-align:center" value="Login using facebook"
onClick="parent.location='https://graph.facebook.com/oauth/authorize?type=user_agent&
client_id=256953694326584&redirect_uri=<?php echo $dynamicUrl?>edit.php&
scope=email,user_birthday,offline_access'">