Hi I need to create some text file, but problem is that I can't figure out how to put there tabulation spaces???
http://www.php.net/manual/language.types.string.php
couldnt find it could you give a litle explanation how can I create tab-space character??? thanx....
It states quite clearly that a tab character is \t, wich means fputs($fp, "\tTEST"); would output (tab)TEST to $fp.