473,397 Members | 1,974 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

general advice about which way to go

Hi all,

My first posting here.

I would be very thankful for a general advice about which "way to go"
to accheive a certain arrangement on a web page.

The page should show a list of items (a wishlist) with about 50 - 150
items, presented each one in a row in a table with e.g. 5 columns.

The visitor should have the possibility to add items to the list
and/or leave a vote for some of the items. Then the list should be
updated with the added items and sorted anew according to the voting.

To be able to vote, the visitor should have to log in with a password.

Which language should I use for this?

I have done some basic HTML, JavaScript and CGI Perl, but if I needed
another language for this, then I would not mind having a look at
that.

Many thanks in advance.

Örjan Skoglösa
infoattransitdotnu
Jul 23 '05 #1
6 1543
On Thu, 21 Oct 2004 08:58:45 GMT, in comp.lang.javascript Örjan
Skoglösa <in*******@hittapaa.se> wrote:
| Hi all,
|
| My first posting here.
|
| I would be very thankful for a general advice about which "way to go"
| to accheive a certain arrangement on a web page.
|
| The page should show a list of items (a wishlist) with about 50 - 150
| items, presented each one in a row in a table with e.g. 5 columns.
|
| The visitor should have the possibility to add items to the list
| and/or leave a vote for some of the items. Then the list should be
| updated with the added items and sorted anew according to the voting.
|
| To be able to vote, the visitor should have to log in with a password.
|
| Which language should I use for this?
|
| I have done some basic HTML, JavaScript and CGI Perl, but if I needed
| another language for this, then I would not mind having a look at
| that.


First you'll need to find out what server side languages and databases
your ISP supports.
---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------
Jul 23 '05 #2
On Thu, 21 Oct 2004 23:49:10 GMT, Jeff North
<jn****@yourpantsbigpond.net.au> wrote:
First you'll need to find out what server side languages and databases
your ISP supports.
---------------------------------------------------------------
That would be PHP and MySQL.

TIA
Örjan
On Thu, 21 Oct 2004 08:58:45 GMT, in comp.lang.javascript Örjan
Skoglösa <in*******@hittapaa.se> wrote:
| Hi all,
|
| My first posting here.
|
| I would be very thankful for a general advice about which "way to go"
| to accheive a certain arrangement on a web page.
|
| The page should show a list of items (a wishlist) with about 50 - 150
| items, presented each one in a row in a table with e.g. 5 columns.
|
| The visitor should have the possibility to add items to the list
| and/or leave a vote for some of the items. Then the list should be
| updated with the added items and sorted anew according to the voting.
|
| To be able to vote, the visitor should have to log in with a password.
|
| Which language should I use for this?
|
| I have done some basic HTML, JavaScript and CGI Perl, but if I needed
| another language for this, then I would not mind having a look at
| that.

jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------


Jul 23 '05 #3
On Fri, 22 Oct 2004 06:27:10 GMT, in comp.lang.javascript Örjan
Skoglösa <in*******@hittapaa.se> wrote:
| On Thu, 21 Oct 2004 23:49:10 GMT, Jeff North
| <jn****@yourpantsbigpond.net.au> wrote:
|
| >First you'll need to find out what server side languages and databases
| >your ISP supports.
| >---------------------------------------------------------------
|
| That would be PHP and MySQL.
First you'll need to create your database consisting of a couple of
tables:
users (log in information and other details)
list (holds your wish list items and details)

The web pages you'll need
Results page: show non-logged in users the results
Voting page: allow logged users to vote on your items
Add item page: logged users can add an item to your database

In addition you'll need
registration page with forgot password email response
maintain registration information

The pages will need html output to display the information.
How you get the data from the database is via PHP.
| >On Thu, 21 Oct 2004 08:58:45 GMT, in comp.lang.javascript Örjan
| >Skoglösa <in*******@hittapaa.se> wrote:
| >
| >>| Hi all,
| >>|
| >>| My first posting here.
| >>|
| >>| I would be very thankful for a general advice about which "way to go"
| >>| to accheive a certain arrangement on a web page.
| >>|
| >>| The page should show a list of items (a wishlist) with about 50 - 150
| >>| items, presented each one in a row in a table with e.g. 5 columns.
| >>|
| >>| The visitor should have the possibility to add items to the list
| >>| and/or leave a vote for some of the items. Then the list should be
| >>| updated with the added items and sorted anew according to the voting.
| >>|
| >>| To be able to vote, the visitor should have to log in with a password.
| >>|
| >>| Which language should I use for this?
| >>|
| >>| I have done some basic HTML, JavaScript and CGI Perl, but if I needed
| >>| another language for this, then I would not mind having a look at
| >>| that.


---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------
Jul 23 '05 #4
Hi Jeff,

thanks for your answers.

Now I know what languages to use and the general outlines.

Next step for me will be to go to the bookstore and find me some
introductions to MySQL and PHP.

Do you know any beginners usenet forum for this two languages?

TIA

Örjan


On Sat, 23 Oct 2004 01:49:11 GMT, Jeff North
<jn****@yourpantsbigpond.net.au> wrote:
| That would be PHP and MySQL.


First you'll need to create your database consisting of a couple of
tables:
users (log in information and other details)
list (holds your wish list items and details)

The web pages you'll need
Results page: show non-logged in users the results
Voting page: allow logged users to vote on your items
Add item page: logged users can add an item to your database

In addition you'll need
registration page with forgot password email response
maintain registration information

The pages will need html output to display the information.
How you get the data from the database is via PHP.
| >On Thu, 21 Oct 2004 08:58:45 GMT, in comp.lang.javascript Örjan
| >Skoglösa <in*******@hittapaa.se> wrote:
| >
| >>| Hi all,
| >>|
| >>| My first posting here.
| >>|
| >>| I would be very thankful for a general advice about which "way to go"
| >>| to accheive a certain arrangement on a web page.
| >>|
| >>| The page should show a list of items (a wishlist) with about 50 - 150
| >>| items, presented each one in a row in a table with e.g. 5 columns.
| >>|
| >>| The visitor should have the possibility to add items to the list
| >>| and/or leave a vote for some of the items. Then the list should be
| >>| updated with the added items and sorted anew according to the voting.
| >>|
| >>| To be able to vote, the visitor should have to log in with a password.
| >>|
| >>| Which language should I use for this?
| >>|
| >>| I have done some basic HTML, JavaScript and CGI Perl, but if I needed
| >>| another language for this, then I would not mind having a look at
| >>| that.


---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------


Jul 23 '05 #5
On Sat, 23 Oct 2004 15:57:50 GMT, in comp.lang.javascript Örjan
Skoglösa <in*******@hittapaa.se> wrote:
| Hi Jeff,
|
| thanks for your answers.
|
| Now I know what languages to use and the general outlines.
|
| Next step for me will be to go to the bookstore and find me some
| introductions to MySQL and PHP.
|
| Do you know any beginners usenet forum for this two languages?
Both mySQL and PHP comes with pretty good documentation.
The following aren't beginners forums but scan through them for
previous posts on resource materials (tons of books and web pages)
comp.lang.php
alt.php
mailing.database.mysql

|
| On Sat, 23 Oct 2004 01:49:11 GMT, Jeff North
| <jn****@yourpantsbigpond.net.au> wrote:
| >>| That would be PHP and MySQL.
| >
| >First you'll need to create your database consisting of a couple of
| >tables:
| >users (log in information and other details)
| >list (holds your wish list items and details)
| >
| >The web pages you'll need
| >Results page: show non-logged in users the results
| >Voting page: allow logged users to vote on your items
| >Add item page: logged users can add an item to your database
| >
| >In addition you'll need
| >registration page with forgot password email response
| >maintain registration information
| >
| >The pages will need html output to display the information.
| >How you get the data from the database is via PHP.
| >
| >>| >On Thu, 21 Oct 2004 08:58:45 GMT, in comp.lang.javascript Örjan
| >>| >Skoglösa <in*******@hittapaa.se> wrote:
| >>| >
| >>| >>| Hi all,
| >>| >>|
| >>| >>| My first posting here.
| >>| >>|
| >>| >>| I would be very thankful for a general advice about which "way to go"
| >>| >>| to accheive a certain arrangement on a web page.
| >>| >>|
| >>| >>| The page should show a list of items (a wishlist) with about 50 - 150
| >>| >>| items, presented each one in a row in a table with e.g. 5 columns.
| >>| >>|
| >>| >>| The visitor should have the possibility to add items to the list
| >>| >>| and/or leave a vote for some of the items. Then the list should be
| >>| >>| updated with the added items and sorted anew according to the voting.
| >>| >>|
| >>| >>| To be able to vote, the visitor should have to log in with a password.
| >>| >>|
| >>| >>| Which language should I use for this?
| >>| >>|
| >>| >>| I have done some basic HTML, JavaScript and CGI Perl, but if I needed
| >>| >>| another language for this, then I would not mind having a look at
| >>| >>| that.
| >
| >---------------------------------------------------------------
| >jn****@yourpantsbigpond.net.au : Remove your pants to reply
| >---------------------------------------------------------------


---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------
Jul 23 '05 #6
Thank you.

BR,
Örjan Skoglösa

On Sat, 23 Oct 2004 20:04:16 GMT, Jeff North
<jn****@yourpantsbigpond.net.au> wrote:
On Sat, 23 Oct 2004 15:57:50 GMT, in comp.lang.javascript Örjan
Skoglösa <in*******@hittapaa.se> wrote:
| Hi Jeff,
|
| thanks for your answers.
|
| Now I know what languages to use and the general outlines.
|
| Next step for me will be to go to the bookstore and find me some
| introductions to MySQL and PHP.
|
| Do you know any beginners usenet forum for this two languages?


Both mySQL and PHP comes with pretty good documentation.
The following aren't beginners forums but scan through them for
previous posts on resource materials (tons of books and web pages)
comp.lang.php
alt.php
mailing.database.mysql

|
| On Sat, 23 Oct 2004 01:49:11 GMT, Jeff North
| <jn****@yourpantsbigpond.net.au> wrote:
| >>| That would be PHP and MySQL.
| >
| >First you'll need to create your database consisting of a couple of
| >tables:
| >users (log in information and other details)
| >list (holds your wish list items and details)
| >
| >The web pages you'll need
| >Results page: show non-logged in users the results
| >Voting page: allow logged users to vote on your items
| >Add item page: logged users can add an item to your database
| >
| >In addition you'll need
| >registration page with forgot password email response
| >maintain registration information
| >
| >The pages will need html output to display the information.
| >How you get the data from the database is via PHP.
| >
| >>| >On Thu, 21 Oct 2004 08:58:45 GMT, in comp.lang.javascript Örjan
| >>| >Skoglösa <in*******@hittapaa.se> wrote:
| >>| >
| >>| >>| Hi all,
| >>| >>|
| >>| >>| My first posting here.
| >>| >>|
| >>| >>| I would be very thankful for a general advice about which "way to go"
| >>| >>| to accheive a certain arrangement on a web page.
| >>| >>|
| >>| >>| The page should show a list of items (a wishlist) with about 50 - 150
| >>| >>| items, presented each one in a row in a table with e.g. 5 columns.
| >>| >>|
| >>| >>| The visitor should have the possibility to add items to the list
| >>| >>| and/or leave a vote for some of the items. Then the list should be
| >>| >>| updated with the added items and sorted anew according to the voting.
| >>| >>|
| >>| >>| To be able to vote, the visitor should have to log in with a password.
| >>| >>|
| >>| >>| Which language should I use for this?
| >>| >>|
| >>| >>| I have done some basic HTML, JavaScript and CGI Perl, but if I needed
| >>| >>| another language for this, then I would not mind having a look at
| >>| >>| that.
| >
| >---------------------------------------------------------------
| >jn****@yourpantsbigpond.net.au : Remove your pants to reply
| >---------------------------------------------------------------


---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------


Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Alex | last post by:
Hello I am intersting in developing and my background is VBA used in Excel and a brief intro to Java. I am interested in learning beyond VB and feel that C++ would be a very good language to...
6
by: J Rieggle | last post by:
Hi there, I am stuck on a problem that relates to eCommerce sites, but isnt ASP.NET specific (sorry). The ecommerce site is working in the UK, and products will be sold in pounds stirling. ...
4
by: tony | last post by:
I'm designing a survey form page that will be fairly complex and am becoming confident enough with PHP now to tackle most things. (Thanks to everyone here who has helped) Before I go too far...
37
by: dmoran21 | last post by:
I am a mathematician trying to write a program in C to do some curve fitting. When I get to the point where I attempt to enter data in my arrays, I get a General Protection Exception error message....
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.