PHP 8.4.0 Alpha 1 available for testing

Voting

The Note You're Voting On

Paul
20 years ago
Here is a extremely easy way to successfully logout.

<?php
if ( $realm == '' )
$realm = mt_rand( 1, 1000000000 );
header( 'WWW-Authenticate: Basic realm='.$realm );
?>

To log the user out simply change the value of $realm

<< Back to user notes page

To Top