Hi, I'm Chandra Sekar M

Sub-Categories
Creating a Fixed Top Menu in Web Design: A Complete Guide
Creating a Fixed Top Menu in Web Design: A Complete Guide
Technology

Navigating through a website should be seamless and intuitive. One way to enhance user expe

  • 02-Aug-2024
Click Back to Previous Page using JavaScript
Technology

With out sending any variable, How to come Back to Previous Page by using Java Script.

Use A tag or Button and create a onclick attribute with "history.go(-1)". So it will check your browser history and redirect to previous page.

Try this, It works 


><a href="javascript:void(0)" onclick="history.go(-1)" class="btn btn-success"> Back </

  • 02-Aug-2024
How to open a new window by using JavaScript with Click Event
Technology

When clicking the Button, How to open a new window by using JavaScript :

Create a Two buttons by using HTML input [or] we can use the Bootstrap buttons for simple and best [or] As per UI design.

  • 02-Aug-2024
How to Identify the number of folders by using PHP Code
Technology

><?php
if ($handle = opendir('.')) {
    while (false !== ($entry = readdir($handle))) {
        if ($entry != "." && $entry != "..") {  
?>
        <a href="<?php echo $entry; ?>"><?php   echo "$entry<

  • 02-Aug-2024
Arrays in PHP
Technology

Arrays in PHP

An array can store multiple values in one variable.

Basic Variable Example :

style="line-height: 1.42857;"><?php
$resultArray0 = &quo

  • 02-Aug-2024
A Simple PHP HTML Mail function with out SMTP credentials.
Technology

A Simple PHP HTML Mail function with out SMTP credentials. The Mail() function allows to trigger emails directly from script.

Syntax : mail(to,subject,message,headers,parameters);

  • 02-Aug-2024

 

Subscribe to our Newsletter

Sign up for free and be the first to get notified about new posts.