Dec 22, 2001 #1 zakd Programmer Joined Dec 11, 2001 Messages 21 Location 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 Joined Jun 6, 2001 Messages 140 Location ZA Hi You can use: header(locationage1.php?ID=34" Cheers Richard Upvote 0 Downvote
Dec 27, 2001 #3 diembi Programmer Joined Sep 22, 2001 Messages 238 Location 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>"; ?>