PHP Dynamic Drop Down list in array

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ahmedyk
    New Member
    • Jul 2008
    • 2

    PHP Dynamic Drop Down list in array

    Dear Sir,
    I have a field in database which stores multiple records, each record is separated by "," and when I populate a drop down list with these records , it displays all records in one line.

    How can I display each record in 1 line, and the next record in second line and so on?
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Split the data on the comma into an array and display the array values instead.

    Comment

    • ahmedyk
      New Member
      • Jul 2008
      • 2

      #3
      Thanks , it works perfectly.

      Comment

      Working...