A report on Dynamic web page, Web server and Form (HTML)
A resource sent from a web server can be a preexisting file (static content) available to the web server, or it can be generated at the time of the request (dynamic content) by another program that communicates with the server software.
- Web serverUsing server-side scripting to change the supplied page source between pages, adjusting the sequence or reload of the web pages or web content supplied to the browser. Server responses may be determined by such conditions as data in a posted HTML form, parameters in the URL, the type of browser being used, the passage of time, or a database or server state.
- Dynamic web pageThese capabilities, along with the multimedia features of NCSA's Mosaic browser (also able to manage HTML FORMs in order to send data to web server) highlighted the potential of web technology for publishing and distributed computing applications.
- Web serverA program running on a web server (server-side scripting) is used to generate the web content on various web pages, manage user sessions, and control workflow.
- Dynamic web pageThe de facto client-side scripting language for web sites is JavaScript.
- Form (HTML)CGIs may be written in other languages than Perl (compatibility with multiple languages is a design goal of the CGI protocol) and there are other ways to make Perl scripts interoperate with a web server than using CGI (such as FastCGI, Plack or Apache's mod_perl).
- Form (HTML)2 related topics with Alpha
Hypertext Transfer Protocol
0 linksApplication layer protocol in the Internet protocol suite model for distributed, collaborative, hypermedia information systems.
Application layer protocol in the Internet protocol suite model for distributed, collaborative, hypermedia information systems.
A web browser, for example, may be the client whereas a process, named web server, running on a computer hosting one or more websites may be the server.
In HTTP/1.1 instead a TCP connection can be reused to make multiple resource requests (i.e. of HTML pages, frames, images, scripts, stylesheets, etc.).
Some web applications need to manage user sessions, so they implement states, or server side sessions, using for instance HTTP cookies or hidden variables within web forms.
PHP
0 linksGeneral-purpose scripting language geared toward web development.
General-purpose scripting language geared toward web development.
PHP code is usually processed on a web server by a PHP interpreter implemented as a module, a daemon or as a Common Gateway Interface (CGI) executable.
He extended them to work with web forms and to communicate with databases, and called this implementation "Personal Home Page/Forms Interpreter" or PHP/FI.
PHP/FI could be used to build simple, dynamic web applications.