<?php
highlight_file
(__FILE__);
echo 
'<hr>';

$a 'a';
if ( 
$a "C" ) {
    echo 
'$a test success<br />';
}

$c 'C';
if ( 
$c == "C" ) {
    echo 
'$c test success<br />';
}

?>

$a test success
$c test success