父窗口的GET變量我有URL中的父窗口:http://example.com?val=test
問題與iframe中
在該頁面中的iframe,我需要得到val
追加到一個鏈接。
目前,我在iframe這樣做:
<?php
$val = $_GET['val'];
?>
<a href ="http://example.com/link.html?val=<?php echo $val ?>">Link</a>
輸出包含額外/
和'
這樣的:
http://example.com/link.html?val=\'test\'
有沒有辦法做正確嗎?
它不會發生在我身上......也許嘗試'的stripslashes($ VAL)':http://php.net/manual/en/function.stripslashes.php – Stefan