473,748 Members | 7,571 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to Build A Web Database (Without Programming)

This is the latest in the "Total Non-Programmer" series. Any feedback on
the usability of this tutorial would be greatly appreciated.

Thanks,
Rob

How to Build A Web Database (Without Programming)

This article will teach you step-by-step how to add interactive
database-driven capabilities to your existing web site. When the steps
below are completed, your web site will be able to search any type of
list (people, products, cars, resumes, articles, pictures etc.) and/or
save the contents of your form into a database for later retrieval.

The following steps will work on both Unix/Linux and Windows based
servers. The only requirement is that you have a hosting account that
includes a /cgi-bin directory. It doesn't matter what kind of computer
you use, so long as it has a web browser. It requires only one
shareware package, which is free for trial purposes.

NOTE TO NON-WINDOWS USERS: To install the program manually, browse to
http://www.abcdatabase.com/webdata/download and follow the instructions
there. Then proceed to Step II.

I. Installation:

1. Download the following zip file:
http://www.webteacher.com/webdata/webdat22.zip
2. Unzip the file. If you don't already have an unzip utility, visit
http://www.pkware.com and get PKZIP.
3. Double-click on "Setup.exe"
4. A window will open with 3 boxes. Enter your server's FTP hostname,
username, and password.
5. Click "Next". Now, double-click on directory names until you are in
the /cgi-bin. DO NOT CLICK "NEXT".
6. Enter the URL to the cgi-bin into the box at the bottom of the
screen. You may need to remove /htdocs or /html or /www from the default
to make it a correct URL. Now you can click "Next".
7. The program will move up one level. Now select a folder where you
want the html pages associated with the database to reside. Again, do
not click "Next" until you are sure the URL in the bottom box is correct.
8. On the last page, just leave /usr/bin/perl in the first box, unless
you know of a different path.
9. The name you choose in the second box will be a part of the file
names, so keep it under 8 characters if possible.
10. Choose any password you like for the third box. Later, when you log
into the database as admin, this will be your password.
11. Click "Finish - this may take a moment". It normally only takes a
minute or two.

II. Logging in

When the installer is finished, it will tell you to browse to the URL
which you selected to hold the program's html pages. Open up a web
browser and go to that page. Click on the link to dbname_admin.ht ml
(where dbname is the database name you chose during installation). Enter
your password in the box and you will be logged in as administrator.
You will see the program's free 30 day trial period at the top of the
page. It is safe to ignore it for now, but if you are still using the
program after 28 days you will want to register it.

III. Setting up your fields

Next you need to decide what pieces of information you want to keep for
each item in your database. If you already have a spreadsheet of data,
the label at the top of each column is a field. Some examples of fields
are: (firstname, lastname, address, city, state, zip, phone) or (VIN,
Make, Model, Year, Color, Description) or (MLS#, Property_type, beds,
baths, sqft, city, schools, picture). You get the idea.

Click the "Modify Fields" button. By default, there are 3 fields
created as place holders named "field1", "field2", and "field3". Select
"field1" and click "Redefine Selected Field" and rename it using the
first field in your list. Follow the prompts to determine whether it
should display as a text box, a checkbox, a pop-up list, a comment box,
or a file box for uploading files. After you redefine "field2" and
"field3" you can click "Insert Field Below Selection" to add more fields
to the list. Click "Return to Administration Screen" when you're done.

IV. If you want visitors to add data into your database

If this database will be for searching only, proceed to step V.

Note: the "user search page" doubles as the "user ADD page".

1. Click "Customize Pages".
2. Check the "Allow Visitors to ADD" checkbox.
3. Under "Which fields should appear on the user search page", click on
each field which you will need the guests to fill in.
4. Scroll to the top and click "Modify Pages."
5. Click "Test your modifications on the User Search Page."
6. Copy the URL in your browser's address bar and use it as a link on
your homepage for guests to add to your database.
7. You can customize the page either by adding HTML to the "Header for
Search Page" box, or by choosing "SAVE-AS" from the FILE menu while
browsed to the page, then use your favorite html editor to edit it. As
long as you don't change the names of any of the form tags, you should
be able to modify the page any way you want.

V. If you want visitors to search your database.

1. First you need to get some data into the database. You can either
type the data into the boxes on the administration screen, or click
"Import data" and upload your spreadsheet through the browser.
2. Click "Customize Pages"
3. Under "Which field should appear on the user search page", choose the
fields that your visitors will want to search.
4. Scroll down to "Sequence of fields" and select 6 or so fields which
will appear on the initial report.
5. Make sure "Include 'view' button" is checked, and type "Details" into
the "Label for view button" box.
6. Scroll to the bottom of the page, click "Modify Pages" and then click
"Test your modifications on the User Search Page."
7. Copy the URL in your browser's address bar and use it as a link on
your homepage for guests to search your database.
8. Feel free to experiment with the options on the "Customize Pages"
screen to help your database match the look and feel of your site.
This is just the tip of the iceberg. There are options for creating
members, restricting access, adding a shopping cart, and more.

The Shareware Company maintains a very helpful support forum at
http://www.webteacher.com/webdata/bbs.

Jul 20 '05 #1
0 5603

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

Similar topics

0
1623
by: John Davis | last post by:
I always heard the term "data/database driven programming" model in ASP database, SQL programming, and web programming circles. But I don't quite sure what does it mean? Does it mean the web software's responds are based on data request from the user? Just like in Windows, we call it "event-driven programming" model because the windows program's responds based on user's responses? That's why we call "data driven programming" ?? Please...
1
11750
by: Matt | last post by:
how to get the last record from database without looping? Whenever the user need to insert a new record to the database, it just increment the id field by one from the last record. I tried objRS.MoveLast, but it wont work.
3
1602
by: MarkW | last post by:
Hi, I have a Javascript heavy application that I need to record stats from for each click that the user makes. For all intents and purposes this is a shopping cart application that employs a neat visual DHTML page turning. This comprises an online brochure with all content loaded in to client on page load. I had to avoid requesting new pages so that I could use this fancy page-turn feature hence the bulky use of Javascript.
7
4451
by: Andy | last post by:
Hi, I have a complicated question that I'm hoping someone can help me out with. I have a webpage that contains a plug-in. This plug-in can communicate/pass data with the webpage that contains it via javascript. What I need to be able to do is take that data passed via javascript and, using vb.net as the code behind language, send it to a database without posting it because when I post, the plugin is reloaded and starts at the beginning....
1
1391
by: molemoore | last post by:
I am learning how to do database programming in VB.Net. I would like to know how to connect to a database programmicly(not sure if thats a word :) instead of using the connection/data adaptor/dataset objects. I've figured out how to move trought the database using typed and untyped commands but I'm still not able to connect to the database without the oleDBconnection object to get the connection string. The connection string I'm using is: ...
3
1767
by: Familjen Karlsson | last post by:
Here is an example from the help on the keword OleDbConnection, in VB.Net, they don't give the path to the database just the word localhost. How can it connect to the database without knowing where it is. What does the keyword localhost do. Thank's Fia Public Sub InsertRow(myConnectionString As String)
1
1623
by: sahoong | last post by:
WEB DATABASE DEVELOPMENT I have a basic knowledge of HTML, PHP and MySQL. I needed to build a web page through which visitors to the page can fill form and upload the cv into the database. Also, I need other users like prospective employers to be able to search though the database for registered users. I have done similar exercise b4 but it was done in my university where i login in to the unix thru telnet to use sql to build the...
1
2780
by: elma.arsalan | last post by:
Hello: Does anyone know whether it is possible to roll back MS Access database without loosing any data? Or can a roll back be undone (kinda odd). Any comment would be appreciated.
4
7844
by: jaz215 | last post by:
hi! how do i add a record in a database without using the datacontrol and adodc. i want to rework my code to using purely codes and not being dependent on the design on vb. so far i have. Set rs = New ADODB.Recordset Set con = New ADODB.Connection con.ConnectionString = "provider=microsoft.jet.oledb.4.0;data source=C:\Program Files\Logsheet\Logsheet.mdb;" con.Open rs.Open "SELECT * from Employee;", con,...
0
8830
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9544
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9324
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9247
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6796
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6074
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4606
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4874
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3313
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.