Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

The Database Forum


You are currently viewing our The Database Forum as a guest. Please register to participate.
Login



Reply
Integrating database into HTML!!! Please Help Me
Old 10-05-2006, 12:14 PM Integrating database into HTML!!! Please Help Me
Junior Talker

Posts: 1
Trades: 0
I'm a complete novice at webdesign but have recently built my website using HTML code. Its looking pretty good but i've got a huge problem where the stuff i'm selling are "one-off" items. So i need some kind of stock control. I've done a database in microsoft access but have no idea how to get my site to read the database and check the stock when people order stuff. Please can someone help me???
There must be some way i can do this without having to buy software? Can i not just somehow put commands into my code to tell it to check the database every time an "add to basket" button is clicked on??

PLEASE HELP ME!
sabrinaP is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 10-05-2006, 06:00 PM Re: Integrating database into HTML!!! Please Help Me
ColdFusion's Avatar
Extreme Talker

Posts: 224
Location: NY
Trades: 1
You will need to use some sort of server-side language (PHP, ASP, JSP, ColdFusion etc)
__________________

Please login or register to view this content. Registration is FREE
*
Please login or register to view this content. Registration is FREE
*
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
*
Please login or register to view this content. Registration is FREE
*
Please login or register to view this content. Registration is FREE
*
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
*
Please login or register to view this content. Registration is FREE
ColdFusion is offline
Reply With Quote
View Public Profile
 
Old 10-05-2006, 11:21 PM Re: Integrating database into HTML!!! Please Help Me
mgraphic's Avatar
Truth Seeker

Latest Blog Post:
JAMISONTUNES
Posts: 2,898
Name: Keith Marshall
Location: Connecticut
Trades: 0
There are alternatives such as Zen-Cart which is open source and free software that offers a complete shopping cart system and secure methods for payment. All you would need is to get a host, SSL certificate and a subscription to a gateway service (or could use paypal).
__________________

<mgraphic /> - I don't have a solution but I admire the problem.
mgraphic is online now
Reply With Quote
View Public Profile
 
Old 01-22-2007, 11:30 PM Re: Integrating database into HTML!!! Please Help Me
dosdawgs's Avatar
Average Talker

Posts: 28
Trades: 0
i would look at one of the open source commerce sites. seems to me that what you have is just a touch out of the extreme category.

good luck in your endeavors
dosdawgs is offline
Reply With Quote
View Public Profile
 
Old 01-25-2007, 12:56 AM Re: Integrating database into HTML!!! Please Help Me
ForrestCroce's Avatar
Half Man, Half Amazing

Posts: 3,023
Name: Forrest Croce
Location: Seattle, WA
Trades: 0
Quote:
Originally Posted by sabrinaP View Post
the stuff i'm selling are "one-off" items. So i need some kind of stock control. I've done a database in microsoft access but have no idea how to get my site to read the database and check the stock when people order stuff. Please can someone help me???
It's actually pretty easy. But there's one big caveat: html is universal, just about any operating system can handle it. But Microsoft Access is proprietary ... you need Microsoft Access ( or at least the "jet" database engine ) to use it.

You probably have a linux web server, because linux is free, and hosting your site costs less. To use your Access database interactively with your web site, you need a Windows web server. If you have a linux server, chances are it comes with MySql and can handle PHP ... so you could export all your data and write programming against a new database up on the server.

As others have pointed out, there are off-the-shelf shopping cart solutions, even free ones. You might be better off with them, unless you're on a MSFT server. ( In that case, if you've got Access 2000+ you should be able to use the "data access pages" feature. )
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
ForrestCroce is offline
Reply With Quote
View Public Profile Visit ForrestCroce's homepage!
 
Old 01-27-2007, 08:57 PM Re: Integrating database into HTML!!! Please Help Me
Average Talker

Posts: 18
Trades: 0
Sabrina,

The first thing you need to ask your web host is if they support Access or SQL databases. SQL is just a beefed up version of Access. If they have these databases then I would suggest porting your data over to SQL.

Once you have done this you can access (not Access) your data by using ASP, PHP, CFM, etc. to add, update, or write data to the data tables.

mgraphic mentioned using PayPal. This is a great way to automatically know when you've been paid for an item by using their Instant Payment Notification (IPN.)

Now; if you are a novice and you don't want to learn all of this stuff then you probably should use an off the shelf shopping cart.

If you do want to learn this stuff then it looks like there are a few people on these forums that can help.

Good luck.
__________________
Teleport yourself...

Please login or register to view this content. Registration is FREE

TeleportJobs
Please login or register to view this content. Registration is FREE
danskapia is offline
Reply With Quote
View Public Profile
 
Old 02-02-2007, 10:18 PM Re: Integrating database into HTML!!! Please Help Me
floridian's Avatar
Novice Talker

Posts: 9
Name: Sergey
Location: Florida
Trades: 0
Hi,

You can use php code to connect to MS ACCESS database. I have an
example. http://www.configure-all.com/php_access.php where you can see how to do that.
__________________
Sergey

Please login or register to view this content. Registration is FREE
floridian is offline
Reply With Quote
View Public Profile Visit floridian's homepage!
 
Old 02-05-2007, 02:36 AM Re: Integrating database into HTML!!! Please Help Me
saadatshah's Avatar
Extreme Talker

Posts: 215
Name: Syed Saadat Ali
Location: Lahore, Pakistan
Trades: 0
If you are novice then go from open source solutions. Just google and u will get 100 of choices.
__________________
- -- --- ---- ----- ------ ------- ---------------
If you have knowledge, let others light their candles in it.
saadatshah is offline
Reply With Quote
View Public Profile Visit saadatshah's homepage!
 
Old 02-08-2007, 01:55 PM Re: Integrating database into HTML!!! Please Help Me
memberpro's Avatar
Super Talker

Posts: 143
Trades: 0
I agree that if you are new to web design then you should use an open-source solution. I would also suggest that you use a MYSQL database, which most likely was included in your hosting package, to keep track of your orders.

You can talk to Access using PHP, ASP, ect... but there are a lot of ways that you could run into problems.

For instance, if you don't enter the right code into the connection string then you won't be able to update your database/recordset. I actually lost 1/2 of a day trying to figure this one out.

Go with the easier option of pre-made solutions using a MYSQL database.
__________________

Please login or register to view this content. Registration is FREE
- step-by-step learn how to design, create and install your own website in hours...not days.
Please login or register to view this content. Registration is FREE
was never so easy.
memberpro is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Integrating database into HTML!!! Please Help Me
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.61293 seconds with 12 queries