I need to take something out of a variable and I dont know how. I have
$id = project_XXXX;
and I want to be able to pull from that
XXXX
How would I go about taking the project_ out of it?
list($project_name,$article_number) = split("_",$id);
thank you