วิธีการส่งค่าตัวแปรระหว่าง javascript กับ php สามารถทำได้โดยการผ่านค่าทาง href — get
index.php
———————————————————————
<?
$val=$_GET[“uid”];
?>
<script>
var stId;
window.location.heref=”index.php?uid=1″;
stId = <? echo $val; ?> ;
alert(stId);
</script>
———————————————————————