Hi, I have a bit of a problem.
I have a code:
for ($j = 0; $j <= $kolicina; $j++)
{
$string=$string." ".$date." ".$bla." ".$bla2;
}
HTML output is sth like this
string 10.10.2003 bla bla2
Now I would like to have and output with TAB instead of a space between the parts of a string.
I know that the tab is "\t" in PHP, but I don't know how to put it in there. I tried with
for ($j = 0; $j <= $kolicina; $j++)
{
$string=$string."\t".$date."\t".$bla."\t".$bla2;
}
but when I echo the $string, there are only spaces between the words.