<?php
$b = 'hello/there';
$mystring = '$b';
$findme = '/';
$pos = strpos($mystring, $findme);
//..... ?>
...Now, how to put 'hello' and 'there' into their own variables? I need to take everything left of "/" and put it into a variable, and everything right of "/" and put it into a variable....
thanks!