View Single Post
  #3 (permalink)  
Old Jan 29th, 2006, 13:59
guelphdad guelphdad is offline
Junior Member
Join Date: Jan 2006
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Re: PHP/Mysql issue...

Even simpler than that since you are using mysql use group_concat in your query.

Code: Select all
select user, group_concat(vehicle)
from yourtablename
group by user
Reply With Quote