0
我運行一個PHP網頁,其中我得到通過從Facebook API按鈕重定向:結構重定向
<fb:login-button class="fb-login-button" scope="user_birthday,offline_access,publish_stream'"
onlogin="window.location='xxxxx.php';">Connect with Facebook</fb:login-button>
我我的目標網頁我沒有任何HTML,我只是有
<?php
code.....
echo '';
if (xxx)
header("Location: http://xxxx.com/xxx.php");
?>
我的問題是,這是正確的嗎? 如果我沒有任何html標籤,echo數據輸出到哪裏?
我應該在這個頁面添加html,head,body標籤嗎?
我的頁面運行不正確,這是我問的方式。