Voting

: max(six, nine)?
(Example: nine)

The Note You're Voting On

Daz Williams (The Northeast)
16 years ago
Only display php errors to the developer...

<?php
if($_SERVER['REMOTE_ADDR']=="00.00.00.00")
{
ini_set('display_errors','On');
}
else
{
ini_set('display_errors','Off');
}
?>

Just replace 00.00.00.00 with your ip address.

<< Back to user notes page

To Top