Hi!
I have a problem:
My code is:
function select_data($conn)
{ $stmt = ociparse($conn,"select * from abkuerzungen");
ociexecute($stmt);
while(ocifetch($stmt)) {
echo(ociresult($stmt,1) );
echo "\n"; //<--- don't make Linefeed!!!!
}
}
on the " echo '\n'; is showed no Linefeed, why????
I can write: echo "<br>", but it's no really good!
What can i do???
Thanks!
Martin