Posted inInternet Programming XML – Validation Posted by admin July 20, 2021 Validation is a process by which an XML document is validated. An XML document is said…
Posted inInternet Programming XML – DOM Posted by admin July 20, 2021 The Document Object Model (DOM) is the foundation of XML. XML documents have a hierarchy of informational…
Posted inInternet Programming PHP – Error & Exception Handling Posted by admin July 20, 2021 Error handling is the process of catching errors raised by your program and then taking…
Posted inInternet Programming PHP – Variable Types Posted by admin July 20, 2021 The main way to store information in the middle of a PHP program is by…
Posted inInternet Programming PHP & XML Posted by admin July 20, 2021 XML is a markup language that looks a lot like HTML. An XML document is…
Posted inInternet Programming Servlets – Cookies Handling Posted by admin July 20, 2021 Cookies are text files stored on the client computer and they are kept for various…
Posted inInternet Programming Servlets – Session Tracking Posted by admin July 20, 2021 HTTP is a "stateless" protocol which means each time a client retrieves a Web page,…
Posted inInternet Programming Servlets – Form Data Posted by admin July 20, 2021 You must have come across many situations when you need to pass some information from…
Posted inInternet Programming Servlets – Life Cycle Posted by admin July 20, 2021 A servlet life cycle can be defined as the entire process from its creation till…
Posted inInternet Programming Servlet Architecture: Basics of Servlets Posted by admin July 20, 2021 A Servlet is a class, which implements the javax.servlet.Servlet interface. However instead of directly implementing the javax.servlet.Servlet interface we…