Help - Can I create a web page with a table that can be updated by the web viewer

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

  1. #1

    Default Help - Can I create a web page with a table that can be updated by the web viewer

    Hi,

    I want to create something like a table of text data. I then want my users,
    who are spread out all over the place, to be able to access the table, fill
    in the blanks with their info and then have the page and the data in the
    table be updated...Is this possible without a database?

    Thanks
    F


    Newsguy Guest

  2. Similar Questions and Discussions

    1. #25473 [Opn->Bgs]: Updating single row in table causing all rows in table to be updated.
      ID: 25473 Updated by: sniper@php.net Reported By: jim at bluedojo dot com -Status: Open +Status: ...
    2. #25473 [Fbk->Opn]: Updating single row in table causing all rows in table to be updated.
      ID: 25473 User updated by: jim at bluedojo dot com Reported By: jim at bluedojo dot com -Status: Feedback +Status: ...
    3. #25473 [Opn->Fbk]: Updating single row in table causing all rows in table to be updated.
      ID: 25473 Updated by: sniper@php.net Reported By: jim at bluedojo dot com -Status: Open +Status: ...
    4. #25473 [Opn]: Updating single row in table causing all rows in table to be updated.
      ID: 25473 User updated by: jim at bluedojo dot com Reported By: jim at bluedojo dot com Status: Open Bug Type: ...
    5. #25473 [NEW]: Updating single row in table causing all rows in table to be updated.
      From: jim at bluedojo dot com Operating system: WinXP PHP version: 4.3.3 PHP Bug Type: MySQL related Bug description: ...
  3. #2

    Default Re: Help - Can I create a web page with a table that can be updated by the web viewer

    In article <8Eh6f.17281$Hm3.6526@fe09.lga>, "Newsguy" <Newsguy@aol.com>
    wrote:
    > I want to create something like a table of text data. I then want my users,
    > who are spread out all over the place, to be able to access the table, fill
    > in the blanks with their info and then have the page and the data in the
    > table be updated...Is this possible without a database?
    You may be looking for <http://wiki.org/wiki.cgi?WhatIsWiki>

    leo

    --
    <http://web0.greatbasin.net/~leo/>
    Leonard Blaisdell Guest

  4. #3

    Default Re: Help - Can I create a web page with a table that can be updated by the web viewer

    With neither quill nor qualm, Newsguy quothed:
    > Hi,
    >
    > I want to create something like a table of text data. I then want my users,
    > who are spread out all over the place, to be able to access the table, fill
    > in the blanks with their info and then have the page and the data in the
    > table be updated...Is this possible without a database?
    Yes. However, you don't want to save the data?

    --
    Neredbojias
    Contrary to popular belief, it is believable.
    Neredbojias Guest

  5. #4

    Default Re: Help - Can I create a web page with a table that can be updated by the web viewer

    __/ [Newsguy] on Saturday 22 October 2005 03:40 \__
    > Hi,
    >
    > I want to create something like a table of text data. I then want my users,
    > who are spread out all over the place, to be able to access the table, fill
    > in the blanks with their info and then have the page and the data in the
    > table be updated...Is this possible without a database?
    >
    > Thanks
    > F
    It sounds to me like you will have to record the data somewhere unless the
    changes made by the visitors should be volatile. The volatility might be
    fine if the contributers fill in a form to get some output or simply play
    a game.

    A popular method of achieving easily-changeable tables, which are also
    edited collaboratively, might be a Wiki, though it may require some re-ad-
    justments to accommodate for tables without high complexity that requires
    user experience.

    A Wiki, by the way, would require a database.

    Roy

    PS - Remember that saving data to your filestore is something that is not
    allowed due to security woe. Log files are often the exception, but you
    could do something with PHP too provided that necessary privileges are
    granted. Be very, very careful if you go down that path.

    --
    Roy S. Schestowitz | "World ends in five minutes - please log out"
    [url]http://Schestowitz.com[/url] | SuSE Linux | PGP-Key: 74572E8E
    5:35am up 57 days 17:49, 8 users, load average: 0.48, 0.68, 0.76
    [url]http://iuron.com[/url] - next generation of search paradigms
    Roy Schestowitz Guest

  6. #5

    Default Re: Help - Can I create a web page with a table that can be updatedby the web viewer

    Newsguy wrote:
    > Hi,
    >
    > I want to create something like a table of text data. I then want my users,
    > who are spread out all over the place, to be able to access the table, fill
    > in the blanks with their info and then have the page and the data in the
    > table be updated...Is this possible without a database?
    >
    > Thanks
    > F
    >
    >
    If you mean "I want their information to be permanently available to
    other visitors", so that the page just keeps on growing, then you need
    to store the data somewhere. This means you need some server side
    execution privileges. Many ISPs offer a guest-book facility that may do
    the job. Otherwise, you will at least need to be able to add the
    information to an XML table and recreate the table each time using
    javascript.

    If you just want the users to have access to their own data, then you
    can store it in a cookie. Retrieve the cookie when they come back and
    create the table from that.
    Gary Dale 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