Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Report Generating

    I have been designing a database using MySQL on my Linux server and using a web
    based front-end. I have the users entering data into the database but now they
    want to get reports by doing a query. For example I have a list of students,
    addresses, courses and their marks, and they would like to know - of all the
    students that did the computer course, how many of them got over 80%.

    I cant seem to figure out how to generate this type of report and display it
    on the web page. They would also like to use criteria to do their report
    search. The database and website is now getting quite big and I'm a bit
    'stumped'

    Thank you

    Infrabyte Guest

  2. Similar Questions and Discussions

    1. preflight XML report differs from droplet report
      Hi all, When i create a xml-report 'by hand' with the preflight tool, it generates much more info then when i use the same preflight profile as a...
    2. Generating PDF from XLS
      Hi, I am trying to generate PDF document from an XLS using Distiller API. In Excel, I have set the page size as A4. However, the generated PDF is...
    3. Generating a Report - Help with the Query
      Hello, I needed some help with generating a report on site page loads tracking. I wanted the Monthly Page Load totals in this query. Further I...
    4. Generating .rtf file
      This is my problem: I have a text in my DB in HTML format (with some tags, such as <br>, <ul> and other). I need to include DB' text in .rtf...
    5. How to link 3 different combo boxex in a form (as report criteria) to the report
      I would like to use 3 combo boxes in a form as parameter criteria for a report. When I open a report, there will be a pop up form with 3 combo...
  3. #2

    Default Re: Report Generating

    What you're trying to do is a simple search/result page. Create a form that
    contains a field called 'percent' that will be used to enter the % rate you
    wish to search above. The, on the next page create a recordset that will
    return only those values that are greater than the value entered on the form
    on the previous page using the request.form("percent") variable. In effect,
    you want to create a query that will:

    select all records where percent is greater than request.form("percent").

    From there, simply drag the [total records] field from the
    Application/Bindings panel in DW onto the page. Hey presto, it will display
    the number of records that meet the criteria sspecified in the query.



    "Infrabyte" <webforumsuser@macromedia.com> wrote in message
    news:d30asi$9e8$1@forums.macromedia.com...
    > I have been designing a database using MySQL on my Linux server and using
    a web
    > based front-end. I have the users entering data into the database but now
    they
    > want to get reports by doing a query. For example I have a list of
    students,
    > addresses, courses and their marks, and they would like to know - of all
    the
    > students that did the computer course, how many of them got over 80%.
    >
    > I cant seem to figure out how to generate this type of report and display
    it
    > on the web page. They would also like to use criteria to do their report
    > search. The database and website is now getting quite big and I'm a bit
    > 'stumped'
    >
    > Thank you
    >

    Mintyman Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139