that works just means you have to write something like this:
<?php
$findme= 'Hacking';
$hacking = strpos($info[92], $findme);
$findme= 'Farming';
$farming = strpos($info[92], $findme);
$findme= 'Multiple Accounts';
$multiple = strpos($info[92], $findme);
$findme= 'Glitch abuse';
$glitch = strpos($info[92], $findme);
$findme= 'Verbal Abuse';
$verbal = strpos($info[92], $findme);
$findme= 'Proxy';
$proxy = strpos($info[92], $findme);
$findme= 'Other';
$other = strpos($info[92], $findme);
if ($hacking !== false) {$reason = "Banned for hacking into someone elses account and/or farming/deleting the user.";}
if ($farming !== false) {$reason = "Banned for merging two or more of your accounts together into one account.";}
if ($multiple !== false) {$reason = "Having more than one account constitutes an immediate ban of all the users account's. If you feel this has happened unjustly, contact support.";}
if ($glitch !== false) {$reason = "Banned for abusing in-game glitches and using them to your advantage without informing Admin.";}
if ($verbal !== false) {$reason = "Banned for using foul or inappropriate language within the game.";}
if ($proxy !== false) {$reason = "Banned for use of proxy's and potential multiple account usage.";}
if ($other !== false) {$reason = "Banned at Admin discretion.";}
?>