Author Topic: [SOLVED] new row in html  (Read 340 times)

0 Members and 1 Guest are viewing this topic.

Offline alin19Topic starter

  • Enthusiast
  • Posts: 333
    • View Profile
[SOLVED] new row in html
« on: January 21, 2008, 08:06:53 AM »
echo $row['simbol'],' ', $row['piata'],' ', $row['bidvol'],' ', $row['bestbid'],' ', $row['bestask'],' ', $row['bidask'],' ',$row['data'],' ',$row['var'];

it outputs  numbers unlined;


i've found this:   echo nl2br($yourTextData);

but if i apply this i get an error;

Offline thorpe

  • Administrator
  • 'Mind Boggling!'
  • *
  • Posts: 29,255
    • View Profile
Re: new row in html
« Reply #1 on: January 21, 2008, 08:07:22 AM »
What is your question?

Offline thorpe

  • Administrator
  • 'Mind Boggling!'
  • *
  • Posts: 29,255
    • View Profile
Re: new row in html
« Reply #2 on: January 21, 2008, 08:08:52 AM »
Lets guess....

Code: [Select]
echo $row['simbol'],'<br />', $row['piata'],'<br />', $row['bidvol'],'<br />', $row['bestbid'],'<br />', $row['bestask'],'<br />', $row['bidask'],'<br />',$row['data'],'<br />',$row['var'];

Offline alin19Topic starter

  • Enthusiast
  • Posts: 333
    • View Profile
Re: new row in html
« Reply #3 on: January 21, 2008, 08:10:11 AM »
yes yes yes :) that worked;  10x