gfmaking Posted June 28, 2006 Share Posted June 28, 2006 please some one give me the query format, I will edit the security like password...I want to get a query of all the fields i a table sorted by a date and the result I want it on a table format instead of comma delimmeted.Thanks Quote Link to comment https://forums.phpfreaks.com/topic/13149-mysql-query/ Share on other sites More sharing options...
wildteen88 Posted June 28, 2006 Share Posted June 28, 2006 Umm, no offense but could you put that in english? And explain in more detail about what you are trying to achive. Quote Link to comment https://forums.phpfreaks.com/topic/13149-mysql-query/#findComment-50567 Share on other sites More sharing options...
gfmaking Posted June 28, 2006 Author Share Posted June 28, 2006 Oppppps....OK I have mysql database built & my Customers put data through HTML form by my pHP file to the database.Now to diplay the result on an HTML formagain, I want a query but what i want is the result to desplay in a table format instead of just scramble on the sreen. Am i clear now?Thanks for your help Quote Link to comment https://forums.phpfreaks.com/topic/13149-mysql-query/#findComment-50571 Share on other sites More sharing options...
Buyocat Posted June 28, 2006 Share Posted June 28, 2006 Someone else had a similar question today, so try looking for it...Anyway in a nutshell you want to do this...$string = '<table>';while ($data = mysql_fetc_array($result, MYSQL_NUM)){$string .= '<tr><td>' . $data[0] . '</td></tr>';}echo $string . '</table>'; I left out a lot, but I hope it is clear enough... that other post goes into more detail.EDITI found the thread, so I'll give you the link. My post was has what you want in more detail, I believe.[a href=\"http://www.phpfreaks.com/forums/index.php?showtopic=97058\" target=\"_blank\"]http://www.phpfreaks.com/forums/index.php?showtopic=97058[/a] Quote Link to comment https://forums.phpfreaks.com/topic/13149-mysql-query/#findComment-50579 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.