Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Redirect PHP Query to .HTML Page Reply To: Redirect PHP Query to .HTML Page

#150311
__
Participant

Actually, this

Request.QueryString("logout")

is not valid PHP. (Looks like you’re in javascript mode, Senff!)

<?php

if( isset( $_REQUEST['logout'] ) ) {
    header( 'Location: http://my-site.com/logout-area.html' ) ;
}