•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 423,540 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,195 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting
Views: 2971 | Replies: 10 | Solved
![]() |
•
•
Join Date: Dec 2007
Posts: 4
Reputation:
Rep Power: 0
Solved Threads: 0
Hello,
This is my first post here, so Hi everyone
. I was advised to come to this site by a friend regarding a query that I have, so here I am.
So we have the E-Commerce subject in this semester. One of the case studies given to us involves creating a website.
BUT
The faculty wants us to create the site using only HTML / XML / WML / DHTML and MS Access / Oracle / SQL
Does anyone here know how do you link to a database using ONLY the above. No asp, jsp, php. He is very specific that no server-side scripting language should be used.
EDIT:
The topic chosen by me is "Auto Dealer"
The website will be created for an automobile dealer, which will have the following:
1. Browsing of all available automobile, with their photos, specifications and prices ( updated weekly )
2. Infomation about Loan / EMI calculated depending on info given by the visitor.
3. Form for leaving call-back details.
/EDIT:
Any help would be appreciated.
Thanks
This is my first post here, so Hi everyone
. I was advised to come to this site by a friend regarding a query that I have, so here I am.So we have the E-Commerce subject in this semester. One of the case studies given to us involves creating a website.
BUT
The faculty wants us to create the site using only HTML / XML / WML / DHTML and MS Access / Oracle / SQL
Does anyone here know how do you link to a database using ONLY the above. No asp, jsp, php. He is very specific that no server-side scripting language should be used.
EDIT:
The topic chosen by me is "Auto Dealer"
The website will be created for an automobile dealer, which will have the following:
1. Browsing of all available automobile, with their photos, specifications and prices ( updated weekly )
2. Infomation about Loan / EMI calculated depending on info given by the visitor.
3. Form for leaving call-back details.
/EDIT:
Any help would be appreciated.
Thanks
Last edited by x3n1x : Dec 10th, 2007 at 2:52 am.
•
•
Join Date: Apr 2005
Location: New York state
Posts: 465
Reputation:
Rep Power: 5
Solved Threads: 72
It's impossible to get data from a database with only HTML/DHTML. If they expect you to then they should be fired. HTML is a completely static language. There are no facilities of a programming language aside from Server Side Includes.
GCS d- s+:+ a-->? C++(++++) UL+++ P+>+++ L+++ !E--- W+++
N+ o K w++(---) O? !M- V PS+>++ PE+ Y+ PGP !t- 5? X- R tv+
b+>++ DI+ D G++>+++ e+ h+>++ r z+*
N+ o K w++(---) O? !M- V PS+>++ PE+ Y+ PGP !t- 5? X- R tv+
b+>++ DI+ D G++>+++ e+ h+>++ r z+*
•
•
Join Date: Apr 2005
Location: New York state
Posts: 465
Reputation:
Rep Power: 5
Solved Threads: 72
You can't really interact with a database with JavaScript but PHP can do it quite easily. Read up a bit on PHP and you'll find that the task is quite simple.
GCS d- s+:+ a-->? C++(++++) UL+++ P+>+++ L+++ !E--- W+++
N+ o K w++(---) O? !M- V PS+>++ PE+ Y+ PGP !t- 5? X- R tv+
b+>++ DI+ D G++>+++ e+ h+>++ r z+*
N+ o K w++(---) O? !M- V PS+>++ PE+ Y+ PGP !t- 5? X- R tv+
b+>++ DI+ D G++>+++ e+ h+>++ r z+*
you can technically fake the interaction if thats what he means.
AJAX uses javascript to interact with a server side page. you dont actually see the page interacting with the javascript so it would technically be a html page. so to speak.
AJAX uses javascript to interact with a server side page. you dont actually see the page interacting with the javascript so it would technically be a html page. so to speak.
When Autumn Falls [ http://www.whenautumnfalls.co.uk ] &&
Designdotworks [ http://www.designdotworks.co.uk ] Web / Graphic / Software Design
Designdotworks [ http://www.designdotworks.co.uk ] Web / Graphic / Software Design
> you dont actually see the page interacting with the javascript so it would technically be a html
> page
Every page served to the client technically has a content type of 'text/html'. The dynamic nature is due to the merit of the form element being able to post its data to a remote resource specified by it's action property, which is capable of processing that data.
> page
Every page served to the client technically has a content type of 'text/html'. The dynamic nature is due to the merit of the form element being able to post its data to a remote resource specified by it's action property, which is capable of processing that data.
I don't accept change. I don't deserve to live.
Happiness corrupts people.
Failing to value the lives of others cheapens your own.
Happiness corrupts people.
Failing to value the lives of others cheapens your own.
sorry what i meant was to a user it would appear as www.domain.com/page.html instead of say .aspx
When Autumn Falls [ http://www.whenautumnfalls.co.uk ] &&
Designdotworks [ http://www.designdotworks.co.uk ] Web / Graphic / Software Design
Designdotworks [ http://www.designdotworks.co.uk ] Web / Graphic / Software Design
Again, with URL rewriting and redirection, those file extensions and URL's don't mean anything. I can very well have a page with url http://www.mysite.com/do.sos and serve a static page called index.html to the client.
I don't accept change. I don't deserve to live.
Happiness corrupts people.
Failing to value the lives of others cheapens your own.
Happiness corrupts people.
Failing to value the lives of others cheapens your own.
•
•
Join Date: Apr 2005
Location: New York state
Posts: 465
Reputation:
Rep Power: 5
Solved Threads: 72
Especially with Apache directives like AddType and AddHandler, you can assign custom extensions.
AddType application/x-httpd-php .sos AddHandler x-httpd-php .sos
Last edited by ShawnCplus : Dec 11th, 2007 at 11:49 am.
GCS d- s+:+ a-->? C++(++++) UL+++ P+>+++ L+++ !E--- W+++
N+ o K w++(---) O? !M- V PS+>++ PE+ Y+ PGP !t- 5? X- R tv+
b+>++ DI+ D G++>+++ e+ h+>++ r z+*
N+ o K w++(---) O? !M- V PS+>++ PE+ Y+ PGP !t- 5? X- R tv+
b+>++ DI+ D G++>+++ e+ h+>++ r z+*
![]() |
•
•
•
•
•
•
•
•
DaniWeb JavaScript / DHTML / AJAX Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
access ajax asp code combo cross-browser javascript menu with few lines of code css data developer development div dreamweaver dropdownlist firefox google checkout google checkout vat home html html api internet ip javascript javascript smooth scrolling scroll smoothly window document position javascript tab menu with rounded corners generator microshaft microsoft module ms msdn net news office prevent javascript menu from getting hidden under flash movies reuse site software sql symantec tables vista w3c web wysiwyg xml
- Frontend HTML, Backend MS Access Database?? (Database Design)
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: Help needed for onkeypress using java script
- Next Thread: Good Prototypejs Tutorial



Linear Mode