Aslında bu şekilde yapabilirsin.
[HIGHLIGHT=php]
<?php
$kelime = 'qorno';

if ($kelime == 'qorno')
{
//işlemler
}
else
{
//işlemler
}
?>
[/HIGHLIGHT]