Showing posts with label Website Designing. Show all posts
Showing posts with label Website Designing. Show all posts

Monday 4 April 2022

How To Override CSS in HTML using !important Directive

                    In this post, we will see How To Override CSS in HTML using !important Directive | how to override css style, how to override css, how to override css class, how to override css property, how to override css important, how to override css class in html, how to override css in html 


Watch following video:

Watch on YouTube: https://www.youtube.com/watch?v=Sj7fa9owVAA

Monday 31 January 2022

Special or Reserved Characters in HTML

                  In this post, we will see, how to add Special or Reserved Characters in HTML. 

Tuesday 11 January 2022

PHP get Current Date & Time of System or Server | PHP get Current Year, Month, User Server Timezone

               In this post, we will see PHP get Current Date & Time of System or Server | PHP get Current Year, Month, User Server Timezone | php get current datetime, php get current year, php get current time, php get current month, php get current timezone, php get current timezone time, php get current user timezone, php get current server timezone, php get current time in specific timezone, get my current timezone php 


Watch following video:

Watch on YouTube: https://www.youtube.com/watch?v=CWa9QlN5D_o

Monday 13 December 2021

Compare Dates in PHP with Examples | How To Compare Dates in PHP

                      In this post, we will see Compare Dates in PHP with Examples | How To Compare Dates in PHP | compare dates in php, how to compare dates, how to compare dates in php. 


Watch following video:

Watch on YouTube: https://www.youtube.com/watch?v=R-PCjp11ymk

Sunday 5 September 2021

How To Download Website Source Code Online Free | How To Download Website Images and Source Code

                   In this post, we will see How To Download Website Source Code Online Free | How To Download Website Images and Source Code.


Watch following video:

Watch on YouTube: https://www.youtube.com/watch?v=ZLFQorlOCr0

Wednesday 22 January 2020

Tuesday 22 January 2019

How to add Discussion Forum in Blogger or in Your Website

                In this post, we will see, How to add Discussion Forum in Blogger or in Your Website.
                Discussion forum helps to have interaction among readers/viewers of our website or blog. We can add it to our website/blog with free of cost. We should be thankful to Google as it has provided this feature. I have created such discussion forums for my website. Check following links:

Higher Studies Portal
https://www.comrevo.com/p/comrevo-discussion-forum.html

Job Portal
https://www.comrevo.com/p/job-portal.html

Guest Blogging 
https://www.comrevo.com/2017/09/guest-blogging.html

Tuesday 15 January 2019

How to change apache tomcat port number

              In this post, we will see how to change Apache Tomcat port number.
              Apache tomcat is a web server. By default, it has port number 8080. There can be a conflict, if the other application with same port number (e.g. Oracle) is running simultaneously. In this situation, we need to change port number of Apache Tomcat.

Sunday 19 March 2017

How to add calendar date picker in html

                          Many times, while developing a website, we need to add Date field into our web page. An automatic generated date picker make it more user friendly and also improves the beauty of a web page.
                          In this post, we will see how to add calendar date picker in html web page.
                          Go through the following program code which uses Java Script to add datepicker to a webpage.

Tuesday 3 January 2017

How to insert and retrieve image from mysql database in jsp

                        In this post, we will see how to insert and retrieve image from mysql database in jsp.
                        Here, frontend and backend programs are in JSP while database used is Mysql. Database name is "test", Database user name is also "test" and password is "123". Table name in which I have inserted image here, is "biodata". Table's configuration is shown in following screenshot:


Tuesday 6 September 2016

How to create login page in jsp with mysql database

                        In this post, we will see how to create log in (User Id and Password) page in JSP.
                        Here, frontend and backend programs are in JSP while database used is Mysql. Database name is "test", Database user name is also "test" and password is "123". Table name in which user id and password are saved is "useridpw". Table's configuration is shown in following table:

Saturday 3 September 2016

How to redirect domain to another domain in godaddy

                     In this post, we will see how to redirect one domain name to anther domain in godaddy.com .
                     Here I am redirecting www.comprevo.com to www.comrevo.com .

                     Follow the following steps:

Friday 12 February 2016

How to add footer into a print of a webpage

               In this post, we will see how to add footer to a print of a webpage. This footer will not be visible on browser webpage but will be present in a print.
                
               Go through the following program. Here I have added footer "P:S-CTL-UG/02/R0" into the print.


How to add a print button to a webpage

                 As a website developer, many times we come across a situation in which we have to add "Print" button/link on a webpage.  This post is for all those web developers.
                 Here, we will see how to add a "Print" button on a webpage. We will also see, how to avoid certain content from a print.
                 Go through the following sections: 


Saturday 26 December 2015

Mysql Tutorial - Basic SQL Queries

               In this post (tutorial), we will see basic sql queries which we need for database (e.g. Mysql) operations. 

Saturday 31 October 2015

How to Handle Session in JSP (Java) with Example

                In this post, we will see how the session is managed / handled in Java-JSP webpage.
                Here I have given a simple example. I have created four webpages. First webpage (jspsession_firstpage.jsp) creates a HTML form and takes input from user. These values will be passed to second webpage (jspsession_secondpage.jsp). In second webpage, we will bind these values to a session. These bounded values will be accessed in third webpage (jspsession_thirdpage.jsp) and fourth webpage (jspsession_fourthwebpage.jsp). In fourth webpage, we will remove the binding of values to session by calling session.invalidate() method.
              To know more methods(functions) for session management, go through the link https://docs.oracle.com/cd/E19857-01/819-6518/gcxvp/index.html.
              Go through the following programs:



Friday 24 July 2015

How to make Form using table in HTML

              Many times, while developing a Web Project, we need to create a table inside a form. Here I have given a sample code for how to make form using table in HTML. 
             Go through it. Output webpage is given just after the program. 


Thursday 23 July 2015

How to add multiple records to Database using single HTML Form

              In this post, I have given sample program for adding (inserting) multiple records to Database using single or same form in HTML.
             For this, you have to use table in HTML form. Go through the following HTML code:

Monday 20 July 2015

How To Use Multiple Resultset in JAVA / JSP

              In this post, I have given sample program for using multiple ResultSet objects in the same Java program.
              Here I have written code in JSP. Database used is Mysql. Mysql database name is "test". Database User name is "test" while password is "123".
              In same Java program, when we have to use two ResultSet objects, we have to use two Statement objects with only one Connection object. It is shown in following program followed by output webpage.
              Here, I am retrieving records from two tables, "firsttable" and "secondtable". Their configuration is shown in following tables: