HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Search results

  1. S

    What is .NET Framework? Explain Architecture & Components

    What is .Net Framework? .Net Framework is a software development platform developed by Microsoft for building and running Windows applications. The .Net framework consists of developer tools, programming languages, and libraries to build desktop and web applications. It is also used to build...
  2. S

    C Conditional Statement: IF, IF Else and Nested IF Else with Example

    What is a Conditional Statement in C? Conditional Statements in C programming are used to make decisions based on the conditions. Conditional statements execute sequentially when there is no condition around the statements. If you put some condition for a block of statements, the execution flow...
  3. S

    AngularJS Hello World Application: Your First Example Program

    The best way to see the power of an AngularJS Application is to create your first basic program “Hello World” app in Angular.JS. There are many integrated development environments you can use for AngularJS development, some of the popular ones are mentioned below. In our example, we are using...
  4. S

    MySQL Workbench Tutorial: What is, How to Install & Use

    What is MySQL? MySQL is an open source relational database. MySQL is cross platform which means it runs on a number of different platforms such as Windows, Linux, and Mac OS etc. Why use MySQL? There are a number of relational database management systems on the market. Examples of relational...
  5. S

    CodeIgniter Controllers, Views Routing: Learn with Example App

    In this tutorial, you are going to learn the following topics. Routing – routing is responsible for responding to URL requests. Routing matches the URL to the pre-defined routes. If no route match is found then, CodeIgniter throws a page not found an exception. Controllers – routes are linked...
  6. S

    SQLite Database: How to Create, Open, Backup & Drop Files

    SQLite databases are very lightweight. Unlike other database systems, there is no configuration, or installation required to start working on an SQLite Open database. What you need is the SQLite library which is less than 500KB in size. We will jump-start working on SQLite databases and tables...
  7. S

    What is VBScript? Introduction & Examples

    What is VBScript? VBScript (Visual Basic Script) is developed by Microsoft with the intention of developing dynamic web pages. It is client-side scripting language like JavaScript. VBScript is a light version of Microsoft Visual Basic. The syntax of VBScript is very similar to that of Visual...
  8. S

    How to Generate Random Numbers in Java

    Random Number Generation with Java Random number can be generated using two ways. java.util.Random class is used to generate random numbers of different data types such as boolean, int, long, float, and double. An object of Random class is initialized and the method nextInt(), nextDouble() or...
  9. S

    OOPs Concepts in Java: What is, Basics with Examples

    What is OOPS? Object-Oriented Programming System (OOPs) is a programming concept that works on the principles of abstraction, encapsulation, inheritance, and polymorphism. It allows users to create objects they want and create methods to handle those objects. The basic concept of OOPs is to...
  10. S

    ASP.NET First Program Example: Hello World

    Let’s look at an example of how we can implement a simple “hello world” application. For this, we would need to implement the below-mentioned steps. Step 1) The first step involves the creation of a new project in Visual Studio. After launching Visual Studio, you need to choose the menu option...
  11. S

    PHP Control Structures: If else, Switch Case

    What is a control structure? Code execution can be grouped into categories as shown below Sequential – this one involves executing all the codes in the order in which they have been written. Decision – this one involves making a choice given a number of options. The code executed depends on...
  12. S

    How to Download & Install XAMPP on Windows: PHP Tutorial

    What is XAMPP? XAMPP is an open-source, cross-platform web server that consists of a web server, MySQL database engine, and PHP and Perl programming packages. It is compiled and maintained by Apache. It allows users to create WordPress websites online using a local web server on their computer...
  13. S

    How to Install Python on Windows [Pycharm IDE]

    PyCharm is a cross-platform editor developed by JetBrains. Pycharm provides all the tools you need for productive Python development. Below are the detailed steps for installing Python and PyCharm How to Install Python IDE Below is a step by step process on how to download and install Python...
  14. S

    15 Simple ASP.NET Performance Tuning Tips

    11. Cache your pages Very frequently, the data on your pages changes at a slow pace. As an example, the hot questions page on Stack Overflow could be updated in real time, but the data changes are not significant enough to bother re-querying the database. Instead of taking a hit going to the...
  15. S

    15 Simple ASP.NET Performance Tuning Tips

    6. Minify your files A compression is a great tool for reducing the amount of data sent over the wire, but all the compression algorithms used to send HTML, CSS and JavaScript are lossless compression algorithms. This means that the result of doing compress(x) => decompress(x) always equals x...
  16. S

    15 Simple ASP.NET Performance Tuning Tips

    1. Measure everything The first thing to do is gather a baseline of your application’s performance. Sometimes you’ll make a change to the site, thinking it will improve performance, but it will actually reduce performance. Although not quite a black art, ASP.NET performance tuning gives you...
  17. S

    Top 10 PHP Tips And Tricks For Beginners

    Use a switch instead of stringing If Statements The useful PHP trick for Developers, use Switch instead of repetitive If conditions. The advantage of this, The code will execute faster thus performance is increased. The usage of Switch statements allows you to go beyond the use of if-else...
  18. S

    Top 10 PHP Tips And Tricks For Beginners

    Don't use require, require_once, include or include_once Almost all developers, use this way to handle external files. Your script should be including various files on top, like class libraries, files for utility and helper functions, etc like this : This is rather primitive. So that, you...
Back
Top