hello I have a string the shows a users height like this,
6' 3"
I wanting to spilt this string into two values FEET and INCHES so I am left with something similar too,
$feet = "6'";
$inches = "3"/"
I so far have tried to do the following, to no avail,
split("[']", $height)