Does anyone know how I would go about doing this ?? could I just something like <link... > statement? or does PHP code need something more sophisticated?
how also would i split up a vaible, so everytime it gets to a ; it writes what its written to an array, then carrys on readin until it gets to another value, e.g.
value of string: a;b;c;d;e
becomes
$pie[0] = a
$pie[1] = b
$pie[2] = c
$pie[3] = d
$pie[4] = e
thanks
