I am not able to get my head around it.
I have this database table
category_id
category_name
steps_description
Now i want to show in format like this
Catgeory 1
Then all steps under it
Catgory2
then all steps under it
Can i do it with one mysql query
Please show me how to loop through with php
EDIT: I have got the ddata in object format i.e collection of objects
I want the result like
for all categories {
<table><tr><th>Catgory Name </th></tr>
<tr> <td>Step1 </td> </tr>
<tr> <td>Step2 </td> </tr>
<tr> <td>Step3 </td> </tr>
</table>
}
something like that but with one query
SELECT * FROM TableName? – Praveen Kumar Sep 5 '12 at 6:24