This is my problem.
I have this text file. Text is divided into parts with ";" -marks like this:
Here is some text;Here is Some text more;And again;And again...;
I want to know how can I take that text and chop it automaticly into variables like this:
$variable[0] = "Here is some text";
$variable[1] = "Here is Some text more";
$variable[2] = "And again";
Thanks in advance!
I have this text file. Text is divided into parts with ";" -marks like this:
Here is some text;Here is Some text more;And again;And again...;
I want to know how can I take that text and chop it automaticly into variables like this:
$variable[0] = "Here is some text";
$variable[1] = "Here is Some text more";
$variable[2] = "And again";
Thanks in advance!