To select more than one field just add them to your query after "email" or use an asterisk(*) to select ALL fields on that table SELECT email,field2,fi eld3 FROM #__users LIMIT.... OR SELECT * FROM #__users LIMIT......
↧