is there a PHP fuction that can search a variable for a word
if example
if($hteam [CONTAINS] Mens) { } if($hteam [BEGINS WITH] Mens) { }
[man]strpos[/man] would work
<?php $findme = 'Mens'; $pos = strpos($hteam, $findme);
if ($pos === true) { ?>
Stuff to show
<?php
}
?>
Vill dis vork?
Should. Try it.