Dec 22, 2001 #1 zakd Programmer Dec 11, 2001 21 GR I want to know how can i redirect inside php code. For example in ASP is: Response.Redirect "page1.asp?Id=34" I want to do the same thing in php code. Thanks
I want to know how can i redirect inside php code. For example in ASP is: Response.Redirect "page1.asp?Id=34" I want to do the same thing in php code. Thanks
Dec 22, 2001 #2 rhowes IS-IT--Management Jun 6, 2001 140 ZA Hi You can use: header(locationage1.php?ID=34" Cheers Richard Upvote 0 Downvote
Dec 27, 2001 #3 diembi Programmer Sep 22, 2001 238 ES You can use jscript for do it: <? echo "<script>document.location.href='pagex.php'</script>"; ?> Upvote 0 Downvote
You can use jscript for do it: <? echo "<script>document.location.href='pagex.php'</script>"; ?>