General web programming / designing Question :?

I have been doing web programming for 2 years (self-education - biology researcher by profession). I developed a small wiki with the necessary functionality, and it is expected that scientific RTE is a batch. I used the mootools framework and AJAX extensively.

I was always curious when I saw query strings passed from URLs. A long, encrypted request string is sent directly to the server. Especially the design of Google is as follows. I think this is the beginning of providing a web service to the client - I think.

Now, my question is: is this a special, highly professional, efficient / advanced web design method for sending requests via URL?

I always felt that URL-based direct communication is faster. I tried my bit and could send the request directly through the URL. here is the link: http://sgwiki.sdsc.edu/getSGMPage.php?8 Thus, the client can directly link to the desired page, and not search and / or automate. There are many possibilities.

The following query: can I point to such a web programming technique? oops: Sorry if I could not clearly express my request.

Prasadam.

+3
source share
3 answers

I think this is the beginning of providing a web service for the client - I think.

, , . , . , . , URL-, , . . , URL- :

http://stackoverflow.com/questions/2557535/general-web-programming-designing-question

-

http://stackoverflow.com/index.php?module=questions&action=view&question=2557535&title=general-web-programming-designing-question

- , , / URL?

, , Front Controller - , Model, View, Controller (MVC). MVC , -. , . (, ..) .

+1

, , , . URL- , URL- ( GET).

http://www.google.com/search?q=URL+parameter

, . , PHP :

$_GET['q']

. , , . #

, URL- , . , AJAX, . back-button AJAX.

JavaScript onload URL- - URL-. .

+1

. , - .

URL- - . apache, :

http://sgwiki.sdsc.edu/getSGMPage.php?8

http://sgwiki.sdsc.edu/getSGMPage.php/8

( , .

, mod_rewrite .

/ . , URL- , GET ( SEO).

.

0

Source: https://habr.com/ru/post/1739401/


All Articles