How Redirect to anothe page with PHP variable using Javascript Code:

Ordinary Javascript Redirect:
 
<script>
window.location.href="customer.php";
</script>


Redirect With Query String that means URL containg PHP varibale value:

<script>
window.location.href="customer.php?customerid=<?php echo $guid;?>";
</script>

0 comments: