在新标签

时间:2015-04-26 22:28:58

标签: html html5

如何在新标签页中显示以下网址?我的config.php文件自动填写' BASE_PATH'并且它成功打开,但我似乎无法在新标签页中打开它。

将不胜感激。

if(!empty($id))
    $link = "<a class='text-success' href='" . BASE_PATH . "quiz-result.php?uuid=" . $id . "'>View Result</a>";

1 个答案:

答案 0 :(得分:2)

你需要目标=&#34; _blank&#34;属性。像这样:

if(!empty($id))
  $link = "<a class='text-success' target='_blank' href='".BASE_PATH."quiz-result.php?uuid=".$id."'>View Result</a>";

我希望有所帮助!