Generating reports

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jayavidya
    New Member
    • Mar 2008
    • 5

    Generating reports

    How could I generate reports from available database in PHP?
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Originally posted by jayavidya
    How could I generate reports from available database in PHP?
    You have to be wayyy more specific than that.

    Comment

    • harshmaul
      Recognized Expert Contributor
      • Jul 2007
      • 490

      #3
      Originally posted by jayavidya
      How could I generate reports from available database in PHP?
      Markus is write.

      But the methodology is simple...

      Write a SQL statement that gets the data out you need.

      pump that into the DB connection, and then loop through the results echoing them out in a table (or whatever you want)

      Comment

      Working...