-1
我使用JavaScript來觸發我的餅乾,我已經被告知,使用PHP the most reliable method to set cookies is to create them on the server side ...如何設置一個PHP cookie被創建onclick事件
我已經測試此代碼,但它創造了
<a href="<?php
if (!isset($_COOKIE['my_test_cookie'])) {
ob_start();
setcookie("my_test_cookie", "1", time()+ (86400 * 90), "/");
ob_end_flush();
}?>" onClick="javascript:HideContent('div3');">Create Cookie</a>
是否有可能建立在PHP中的cookie,只創造了他的onclick事件:在頁面加載,我需要它的cookie只有當用戶點擊一個鏈接來設置?
如:< href="#" onclick="call_the_php_function_where_we_setup_the_cookie_variables();">click here to create the cookie</a>