I would like to know how I can take a string that has 2 parts, split them in 2 and then assign a variable for each part.
so it would look somthing like this:
$string = "hello world";
......I need to split this string now....
...and then assign the variables...
$first = "hello";
$second = "world";
does anyone know how this works?