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>
<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:
Post a Comment