hello,
so i have a .txt file like this...
%2:jim
%1:bob
this is read and assigned the variable $contents - i do this to split it up...
$rows = explode("%",$contents);
now i want to display it so i...
echo "$rows[0]"; or echo "$rows[1]";
but nothing happens! why? help me, thank you.
benjamin