Ben aşağıdaki kod ile çalışıyorum:
action.php
<?php
$_SESSION['passtext'] = $_POST['passtext'];
?>
index.php
<script type="text/javascript">
$(function(){
$("#clickable").click(function() {
$.post("action.php", { passtext: "Hello" } );
alert('refresh the page to see the session text');
});
});
</script>
<a href="javascript:void(0);" id="clickable">click me to set session text</a>
<?php if(isset($_SESSION['passtext'])) echo $_SESSION['passtext']; ?>
Ben bağlantıyı tıkladığınızda, ben uyarı olsun, ama action.php hiç çalışmıyor gibi görünüyor - Ben sayfayı yenileyin ve ben (değil $ _SESSION ['passtext'] hiçbir yankı görüyorum çünkü ayarlanan)
Hata Konsolu hata ya vardır
Ne eksik?