Creating a page that pulls from a table

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Creating a page that pulls from a table

    I want to create a page that will dynamically pull information from a single
    table when querried by a single record. I don't want it to display any of the
    table data until it is querried. I don't know how well I'm explaining this, but
    a perfect example of what I want to do is here -> [url]www.blincinc.com/database.asp[/url]
    .. Try searching 22033.

    That page was done with front page and access without having any very
    technical knowledge. What is the easiest way for me to make a page like that
    with dreamweaver? (I have access to access and excel, but let me know if I have
    to use any other programs.)

    jbnicholas Guest

  2. Similar Questions and Discussions

    1. Random Pulls
      Good day. I am using an MS Access database. In one table I will have an unknown number of entries. What I would like to do is pull five unique,...
    2. Server pulls pages from wrong directory
      Hi, We're having a very strange issue. We just upgrade to Coldfusion 6.1, and now it is at random displaying the wrong pages. Particularly, we...
    3. need ftp-mirroring software, that pushes, rather than pulls
      Hello! I need to push a sizable subtree over to another server periodically. The remote, however, only allows ftp... All of the...
    4. Creating a table or something like that
      Can someone tell me if there is a way to dump data into something akin to a table. I am creating a mortgage tool and I want to place all the...
    5. creating table - can't
      I've read around, especially at mysql.com to see if there are any limitations to tablenames, one is 64 characters and the other one seems to be...
  3. #2

    Default Re: Creating a page that pulls from a table

    You need to be able to write a query using whatever server language your site is using (eg. ColdFusion) to do this. Do you know what language it is?
    MrBonk Guest

  4. #3

    Default Re: Creating a page that pulls from a table

    PHP is enabled. But I'm sure I'm able to use just about anything else. I'm a lil familiar with PHP, but I'd just like to use whatever is easiest.
    jbnicholas Guest

  5. #4

    Default Re: Creating a page that pulls from a table

    Hehehehe......easy is all relative :) If you know PHP and want to stick with
    that, then there's definitely someone in here who will be able to tell you what
    you need for that. I don't know PHP, so I can't help with the PHP specifics.

    But, the basic approach is to create a query, then use the results of that
    query to fill your table. Say you have a table called 'details' that has the
    fields 'name' and 'town' and you're using a form to get the variable you're
    going to use for the query. You might write SQL like:

    SELECT *
    FROM details
    WHERE town='#form.town#'

    The actual construction of the query will be language specific though, so
    whatever language you're using will determine how you put that SQL into the
    rest of the code.

    Same deal for the results. You put the output of the query into the <td> tags
    of your table.....again, how you do this is language specific.

    MrBonk 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