Answer by  
                                                                                          smiles (44)
                                                            
                          
                          
                                                           To redirect a page in php5, you would use the header function. The header function takes the parameter "Location: " and a string variable representing the URL in which the user should be redirected. The URL can be a string or a variable. For example, header("Location: http://www. yahoo. com") or $URL = "http://www. yahoo. com";  header("Location: $URL);