php - How to change order / presentation when echo? -


i'm trying change way playlist looks when fetch form database. right when echo out playlist ( echo $row['lista']; ) this:

1.2.3. , on...

i wanna make this:

1.     2.     3.     ... 

is possible?

i've tried suggestions, it's not working. have text in table? looks this:

  1. den självslagne 2. en sångarsaga 3. infruset 4. ungdomen 5. snigelns visa 6. strövtåg hembygden 7. men 8. en ung mor 9. titania 10. gråbergssång

you need line break here.

you not adding line break so, data getting printed side side.

all need is:

echo $row['lista'] . "<br />"; 

Comments

Popular posts from this blog

css - I want to align grid in center -

Contact Form PHP Email Script -

python - SWIG function not printing output -