Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Newsguy #1
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
-
#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: ... -
#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: ... -
#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: ... -
#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: ... -
#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: ... -
Leonard Blaisdell #2
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:
You may be looking for <http://wiki.org/wiki.cgi?WhatIsWiki>> 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?
leo
--
<http://web0.greatbasin.net/~leo/>
Leonard Blaisdell Guest
-
Neredbojias #3
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:
Yes. However, you don't want to save the data?> 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?
--
Neredbojias
Contrary to popular belief, it is believable.
Neredbojias Guest
-
Roy Schestowitz #4
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 \__
It sounds to me like you will have to record the data somewhere unless the> 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
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
-
Gary Dale #5
Re: Help - Can I create a web page with a table that can be updatedby the web viewer
Newsguy wrote:
If you mean "I want their information to be permanently available to> 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
>
>
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



Reply With Quote

