Jump to content

Store websites?


D tech

Recommended Posts

Hi,I am asking,over lets saywhen you go to a website where sells products most likely when you select something you want to buy they add it in a cart , and when youre done shopping you buy all the stuff that are in the cart at ones ,wich web building language they use? and can you provide a example coding or just say the language .And also how to make a search engine for youre own website ( not by using google or something like that , from scratch)Someone told me you can use JAVA Script is that true?Any help is usefull :)

Link to comment
Share on other sites

actually, you can make a search application with Javascript (if you're talking about JAVA, I think you could use that too), but I wouldn't use that language. usually shopping carts are made with PHP or some other sever-side scripting language. you will have to learn one of those really well before you can do something like that, though.LG

Link to comment
Share on other sites

You could use JavaScript for a search if you only wanted to search the current page, if you wanted to search your whole site at one time you would need a server side language like PHP or ASP.Net.Shopping Carts can be built in many languages: PHP, ASP, ASP.Net, JSP, ColdFusion, etc. It just depends on what you knwo and want to use.

Link to comment
Share on other sites

Also, search engines can be made in C, C++ and most other computer programming lanuages. Some search engines do that because of speed and how they want to store data. I personly have only seen one search engine like this where you could download a copy of it.I'm making my own search engine, if you don't know a advanced lanuage like PHP, Perl, ASP... I wouldn't try to make your own, but get a free search engine script from Hotscripts or something. here is a Perl one -- http://www.xav.com/scripts/search/supports ~10,000 pages, admin panel...here is a PHP one -- http://www.cs.ioc.ee/~ando/sphider/supports ~20,000 pages, admin panel...the best guess is there are 500-600 Billion pages on the internet, so it's not like your going to get them all, Google does like 8 Billion. The search engine I'm making should run display results faster than both FDSE and Sphider. If your looking for the same term, mine looks in 60 times as less space to find the same infomation.

Link to comment
Share on other sites

There's more than just speed, there is completeness and correctness. Completeness means that if a match exists, you will always find it (never report 0 results if there is one). Correctness means you will never return a false positive for a match.So it's more than just speed.. a good search engine is complete, correct, and fast.

Link to comment
Share on other sites

A good example of that was forums.asp.net's old serach engine. It was super fast...then again that is probably because it never returned any results. It was awful and useless.

Link to comment
Share on other sites

Yeah, speed is great, but it takes a lot of elegance to get all 3. Google does pretty well at it, but then again they have the most powerful distributed supercomputer ever built, with something like 450,000 servers in their network. And more to come..http://www.nytimes.com/2006/06/14/technolo...all&oref=slogin

Link to comment
Share on other sites

Yeah, speed is great, but it takes a lot of elegance to get all 3.  Google does pretty well at it, but then again they have the most powerful distributed supercomputer ever built, with something like 450,000 servers in their network.  And more to come..http://www.nytimes.com/2006/06/14/technolo...all&oref=slogin

:)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...