如何銷燬由jquery設置的php會話。在jQuery中破壞php中的會話?
代碼註冊會話:
$('#psubmit').click(function() {
$.post("single-us_portfolio.php", {"myusername": "myusername"});
});
,並就custom.php代碼訪問會話:
session_start();
$_SESSION["myusername"] = $_POST["myusername"];
if(!session_is_registered(myusername)){
echo '<meta http-equiv="Refresh" content="1; url=http://www.ididthisfilm.com/lex_tmp2/the-lexicon/">';
}
現在,我想在這個表單提交破壞這個會議:
<form >
<input type="file" class="js-file-validation-image" name="file" id="filed" required="required">
<input type="submit" value="PUBLISH PHOTO" id="hello" name="publishpost" >
</form>
當你想破壞會議?在哪個事件? –
點擊提交按鈕,ID爲「hello」 – user3739733
您可以在需要時使用'session_destroy'功能。 – Saqueib