TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About hp
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Vinod Kumar (12)
Vineet Kumar Saini (9)
Sharad Gupta (6)
Kisorjan Jakathiswaran (4)
Vijay K (4)
Sangeetha S (3)
Anish Ansari (2)
Aditi Bamaniya (2)
Md Sarfaraj (2)
Srinath Pega (2)
Ehtesham Mehmood (2)
Ravishankar Velladurai (2)
Mike Steward (2)
Rasul Huseynov (1)
Vishwas R (1)
Joseph Thomas (1)
Jaydeep Patil (1)
Thiyagu Baskaran (1)
Onkar Sharma (1)
Kiran Verma (1)
Mohamed Shifan (1)
Rathrola Prem Kumar (1)
Kantesh Sinha (1)
Ijas Ahamed (1)
Satyapriya Nayak (1)
Rajkumar Jain (1)
Raj Kishore (1)
Tarun Agrawal (1)
Michael Lee (1)
Rajendr Singh Dodiya (1)
Sandeep Mishra (1)
Karthick S (1)
Gokulakrishna (1)
Nitesh Kejriwal (1)
Azim Zahir (1)
Pankaj Lohani (1)
Cecil Phillip (1)
Valerii Tereshchenko (1)
Lalit Bansal (1)
Abhijeet Jadhav (1)
Sormita Chakraborty (1)
Roshan Rathod (1)
Praveen Kumar (1)
Ganeshan N (1)
Anant Sharma (1)
Divya Sharma (1)
Vishal Chaturvedi (1)
Mike Gold (1)
Umesh Singh (1)
Amir Ali (1)
Raman Sama (1)
Venkatesan Jayakantham (1)
Anurag Sarkar (1)
Nilesh Sanyal (1)
Dipa Mehta (1)
Pratiksha R (1)
Atif Qureshi (1)
Amit Kumar Singh (1)
Bhuvanesh Mohankumar (1)
Bhavya Gaur (1)
Yogi S (1)
Related resources for hp
No resource found
Example of Aspect Oriented Paradigm with DispatchProxy Class
10/23/2024 5:25:01 AM.
This article explores how to implement cross-cutting concerns in .NET using the DispatchProxy class. It demonstrates dynamic proxy creation for logging and other concerns, highlighting the benefits of
Visualizing MySQL Date-Time Data with CanvasJS in PHP
9/25/2024 5:31:31 AM.
Learn how to create CanvasJS charts using date-time values from a database in PHP. This comprehensive guide covers setting up your database, fetching data, converting PHP timestamps to JavaScript time
Setting Up Google App Engine And Uploading An Image To Google Cloud Using PHP
4/30/2024 9:05:15 AM.
Setting up Google App Engine for PHP involves configuring App.yaml, deploying code, and leveraging Google Cloud Storage for image uploads. With PHP libraries, developers can seamlessly integrate image
Create An Ordering System Using Laravel, RabbitMQ, And Twilio
4/24/2024 7:30:46 AM.
By the end of this article, you will be able to create a web application using PHP which will be able to store the message in the queue and will be able to send messages to the users on their phone.
Containerized Apps: Auto Scaling & Monitoring with Kubernetes
4/9/2024 8:32:56 AM.
Learn the fundamentals of Docker and Kubernetes, including auto-scaling. Follow a detailed guide to implement a Weather Forecast API using .NET Core 6 Web API, containerize the application with Docker
How to Use Stored Procedure in PHP
4/5/2024 5:42:14 AM.
Using stored procedures in PHP involves connecting to a database using MySQLi or PDO, preparing and executing SQL queries that call the stored procedures. Utilize parameterized queries for security an
Web Developers' Guide to URL Encoding and Decoding Mastery
3/3/2024 5:13:04 AM.
URL encoding and decoding are fundamental processes in web development, ensuring the secure and reliable transmission of data over the internet. We will explore the essentials of both URL encoding and
How To Install WAMP Server On Windows 10
2/22/2024 11:55:16 AM.
Installing WAMP Server on Windows 10 provides a local development environment for web projects. It integrates Apache, MySQL, and PHP, enabling seamless testing and deployment. Once installed, you can
How to Build a Calendar in PHP?
2/22/2024 10:30:34 AM.
In this article, we'll guide you through creating a calendar using PHP. It's a straightforward process that involves using HTML for the structure, CSS for styling, and PHP for the logic. We
Installing and Configuring XAMPP on Windows 11
2/20/2024 6:51:27 AM.
This article provides a comprehensive guide on installing XAMPP, the popular PHP development environment, on Windows 10/11. XAMPP includes Apache, MySQL, PHP, and Perl, making it a convenient solution
Building a Secure PHP MySQL Signup/Login Website with Email Verification
1/15/2024 8:48:49 AM.
Creating a secure signup/login system is essential for any web application that involves user authentication. In this article, I'll guide you through building a PHP MySQL login/signup website with
Elastic Bean Stalk in AWS
12/14/2023 5:10:44 AM.
Amazon Web Services (AWS) Elastic Beanstalk simplifies web application deployment and management on AWS. It automates infrastructure tasks, ensuring scalability, load balancing, and updates, letting y
Create An HTML Form And Insert Data Into The Database Using PHP
11/20/2023 5:49:00 AM.
This article shows how we can create a SIGN UP form and store the entered data into our database (mysql) using PHP.
PHP.ini Upload_Max_Filesize Exceeded Error
10/26/2023 12:32:55 PM.
The uploaded file exceeds the upload_max_filesize directive in php.ini." This error occurs when you're trying to upload a file in PHP, but the size of the file being uploaded is larger than t
Implementating Captcha in PHP
8/21/2023 10:10:33 AM.
In this article we will create a registration page with captcha implemented in it in PHP.
Laravel Lumen Lightweight Framework for Powerful Web Applications
7/11/2023 5:42:36 AM.
Laravel Lumen is a lightweight micro-framework built on Laravel, offering developers a fast and efficient solution for building microservices and APIs. With its minimalistic approach, seamless integra
Custom search functionality for data tables for server-side processing with PHP and MySQL
6/30/2023 8:23:57 AM.
To add custom search functionality to Data Tables for server-side processing with PHP and MySQL, you can modify the SQL query dynamically based on the search criteria provided by the user.
Control Statements In PHP
6/27/2023 11:41:31 AM.
In this article you will learn about control statements in PHP.
CRUD Operation in PHP using MySQL
6/21/2023 8:56:59 AM.
In this article, you will learn the standard way to create a CRUD operation. It is created using PHP and MySQL with custom functions. So, it is very simple to learn and develop your project.
How to run a PHP code using XAMPP Server
6/19/2023 5:55:23 AM.
The most commonly used web-backend programming language is PHP. A PHP script can be executed through a web server module. Installing a web server like Apache and a database server like MySQL is requir
How to Setup Amazon CodeWhisperer
6/8/2023 6:12:45 AM.
How to Setup Amazon CodeWhisperer for Individuals.
6 Functionalities That Make PHP a Versatile Language
4/26/2023 10:40:29 AM.
In this blog, we will explore the six most frequently utilized features and functionalities of PHP, along with real-world examples demonstrating how they can be applied in practical applications.
Best Practices for Building Large-Scale Laravel Applications
4/22/2023 10:54:39 AM.
This article provides tips and best practices for developing large-scale Laravel applications. By following these best practices, you can improve the quality and scalability of your application, make
Convert PHP Array to String
3/2/2023 4:54:47 AM.
This code explains how to convert an array into a string in PHP.
My Journey From PHP To Flutter Developer
2/13/2023 5:59:11 AM.
Hello guys, In this article, I will be sharing my journey of transitioning from a PHP Developer to a Flutter Developer. So, without further ado, let's dive in,
Understand What are PHP Data Types
9/16/2022 10:05:49 AM.
In this article you will understand PHP data Types such as scalar data types, compound data type, and special data types
MySQL PHP MVC CRUD Without Framework
5/4/2022 9:25:36 AM.
This article shows beginners how to make their own MVC framework pattern in PHP. Also, it explains the design style of a framework and the way of coding.
Connection Between PHP And MS CRM
3/26/2022 10:33:48 AM.
In this article, you will learn about the Connection between PHP and MS CRM.
How To Read JSON File And Display In A Table Using PHP
2/24/2022 8:48:54 PM.
In this article, will discuss about how to read a JSON file and display the details in table format using PHP.
Deploy A Dockerized Laravel Application To AWS ECS With EC2 Instance Launch Type Using GitHub Actions
1/17/2022 8:53:56 AM.
In this article, you will learn how to deploy a docker-ized Laravel applications to AWS ECS EC2 launch type.
Voyager An Admin Panel For Your Laravel Application
1/7/2022 5:50:44 AM.
Voyager is a free and open-source pre-build admin panel for the Laravel application.
Write And Append Data In JSON File Using PHP
12/3/2021 6:36:46 AM.
In this article will explain how to write and append a data in json file while on submitting a form. Here using few PHP function we are going to add a date in json format.
User Management With Location Track Using PHP/MySQL
11/16/2021 3:15:25 PM.
User management application with same users location track using xampp server PHP/MySQL.
Dynamics 365 for Marketing | Episode -05 | Social Configuration | Social Posting
10/1/2021 5:59:38 AM.
Dynamics 365 for Marketing | Episode -05 | Social Configuration | Social Posting
Microsoft Power Virtual Agents | Sign up for Power Virtual Agents Trial
9/28/2021 6:01:00 AM.
Microsoft Power Virtual Agents | Sign up for Power Virtual Agents Trial
What is AWS Elastic Beanstalk? Why we need it? How to deploy a webapp in it? | Gokulakrishna | English
8/2/2021 4:48:07 AM.
In this video, I have explained about AWS Elastic Beanstalk Overview in English!! You will understand AWS Elastic Beanstalk and how to configure it and deploy your web app and also come to know differ
Implode and Explode in PHP
7/5/2021 5:32:11 AM.
In this article, learn how to use PHP Implode and PHP Explode in an application. PHP Explode function breaks a string into an array. PHP Implode function returns a string from an array.
String Formatting in PHP
7/1/2021 10:16:11 AM.
In this article you learn one of the PHP formatting functions, printf().
How to Implement Back To Top Feature in HTML, ASP.NET and PHP
5/27/2021 9:25:30 AM.
Today in this article we will implement the feature of a Back To Top or Scroll To Top button that when clicked takes you to the top of the web page in one of the easiest possible ways.
Working With Zip Files In PHP
3/12/2021 12:58:44 PM.
This article explains how we can use the ZipArchive class to work with zip files in PHP.
Password Encryption For Forms Authentication in ASP.Net
2/3/2021 10:28:39 AM.
This article explains Forms Authentication and how to generate the encrypted password for Forms Authentication.
Wordpress on .NET Core
1/29/2021 4:48:36 AM.
Peachpie is an open source project that allows for a seamless interoperability between PHP and .NET applications. In this episode, Benjamin and Jakub from the Peachier project show us how they enabl
Aspect Oriented Programming In C# Using DispatchProxy
11/23/2020 6:10:41 AM.
Example of implementing logging using Aspect Oriented approach with DispatchProxy class.
How To Create AWS EC2 Instance And Host PHP Applications
9/8/2020 11:10:32 AM.
By the end of this article, you will be able to create an AWS EC2 instance or Virtual Machine(VM) and you will be host PHP applications.
Top 5 Reasons Why Python Is Better Than PHP
9/8/2020 8:51:25 AM.
In this article, you will learn about Top 5 Reasons Why Python is better than PHP.
How to get User Presence information in Microsoft Teams using React
8/15/2020 6:46:59 PM.
This article explains the detailed walk through of how to get the Microsoft Teams user presence in React web application
Configuring Horizontal Pod Autoscaling For Azure Kubernetes Services
7/13/2020 5:50:47 AM.
In this article, you will learn how to configure Horizontal Pod Autoscaling for Azure Kubernetes Services.
How To Implement A Youtube Video Search Using Youtube Data API V3 In A WordPress Website
7/9/2020 6:28:28 AM.
This article gives an introduction of how to integrate Youtube Data API v3 for a Youtube video search and how YouTube Data API v3 API will provide access to YouTube data, such as videos, playlists, an
Top 10 Most Popular Articles of PHP
6/16/2020 1:00:39 AM.
This article lists the top 10 most-read articles of PHP category.
Create A Login Form Validation Using PHP And WAMP / XAMPP
6/16/2020 12:56:04 AM.
Create a login form validation, using PHP and WAMP/XAMPP.
Create Login and Registration Form in PHP Using OOP
6/16/2020 12:47:50 AM.
In this article, I create a login form and registration in PHP using a class and object, CSS, JavaScript and MySQL.
Fetch Data From Database and Show in Tabular Format in Codeigniter
6/16/2020 12:40:06 AM.
In this article, I will show how to fetch data from a database and show it in a view of a tabular format in codeigniter.
Insert Multiple Checkbox Value in Database Using PHP
6/16/2020 12:34:05 AM.
In this article we will see how to insert multiple checkbox values in one column in a MySQL Database.
Dropdown List in PHP
6/16/2020 12:26:57 AM.
In this article you will see how to create a static and dynamic drop down list in PHP.
Insert Value From Radio Button in MySQL in PHP
6/16/2020 12:21:45 AM.
Using this article one can easily understand how to insert a value from a radio button into a MySQL database in PHP.
Insert Value From CheckBox In Database (MySQL) In PHP
6/16/2020 12:16:25 AM.
In this article you will see how to insert a value from a checkbox in the MySQL database.
Script For Login, Logout And View Using PHP, MySQL And Bootstrap
6/15/2020 11:47:05 PM.
This article shows how to make a login, logout and view script using PHP, MySQL and Twitter Bootstrap.
Operators In PHP
5/21/2020 8:40:34 AM.
In this article you will learn about Types and usage of operators in PHP.
Simple Color Syntax Code Editor for PHP written in C# and .NET: Part I
5/21/2020 2:48:00 AM.
The Application is a simple Windows Form program that allows you to open and save the text files edited in the rich edit control, as well as print them out. The program takes advantage of a “syntax” t
Data Types And Variables PHP
5/19/2020 9:43:05 AM.
In this article you will learn about Data Types and Variables PHP.
Installation Of Apache For PHP
5/18/2020 8:16:45 PM.
In this article, you will learn about the installation of Apache for PHP.
Call By Value And Call By Reference In PHP
5/1/2020 7:28:36 AM.
In this article I am going to explain call by value and call by reference in PHP
WordPress Setup Using Raspberry Pi 3 And PHP
4/28/2020 5:21:38 AM.
In this article, you will learn to Setup WordPress using Raspberry Pi 3 and PHP.
Lightweight Raspberry Pi 3 Web Server Using PHP And HTML
4/28/2020 2:13:55 AM.
This article demonstrates how to make a lightweight Web Server for the home using Raspberry Pi 3 and Python 3 IDE. The Pi can even handle Web Server so if you want to launch your own website with a pr
The Difference Between Abstract Class and Interface in PHP
4/20/2020 7:45:53 PM.
In this article, you will learn about the difference between abstract class and interface in PHP.
Using JavaScript Function in PHP
4/7/2020 2:16:10 PM.
We are going to describe how to use a JavaScript function with HTML
WampServer in Android
4/2/2020 12:25:55 AM.
This article explains what Wamp Server is and how to install it.
Understanding Parallel Programming Using Pthreads In PHP
2/13/2020 7:59:02 AM.
PHP is the appeal of a simple synchronous, single-threaded programming which attracts most developers. And for significant performance improvement,Pthreads can enhance the experience of your website i
Mouse And Touchpad In Windows 10
1/16/2020 12:13:48 PM.
In this article you will learn about Mouse and Touchpad in Windows 10.
Sending Mail From Website Using PHP & HTML
12/19/2019 2:40:42 AM.
In this article we will see how to send mail from a website Using PHP & HTML.
SQL Injection Step By Step - Part One
9/30/2019 8:28:47 AM.
This article explains how SQL injection can be used to bypass the login page of a PHP application.
Starting With PHP - Installation, Syntax, Variables, Constant
7/25/2019 9:22:35 AM.
In this article, you will learn how to get started with PHP - installation, syntax, variables, and constant.
Random String in PHP
6/1/2019 9:28:02 AM.
PHP rand function generates a random string. In this article, learn to create a random string in PHP.
Include() and Require() Function in PHP
5/28/2019 6:39:36 PM.
Let's learn php include file functionality using the include() and require() functions in PHP.
Insert Statement With PHP Script
5/16/2019 4:40:41 AM.
In this article we are going to have a glance at the insert into statement through PHP. The INSERT INTO statement is used to insert new records in a table. Here we are going to explore the concept tho
Database Connectivity (Insert and Select) With MySQL in PHP
5/16/2019 4:31:10 AM.
This article explains how to insert and select data from database into a HTML table in PHP.
MySQL Like Operator in PHP
12/19/2018 12:01:54 AM.
In this article I will explain the MySQL Like operator in PHP. The MySQL Like operator is based on pattern matching and commonly used to select data based on pattern matching.
Introduce Type Hinting In PHP5
12/18/2018 11:53:06 PM.
This article explains type hinting using PHP5. Functions square measure are currently able to force parameters to be objects by specifying the name of the category within the operate prototype, interf
Date() Function in PHP
10/29/2018 2:06:02 AM.
Using this article one can easily understand , how to format a date and time in PHP and related functions.
Working with PHP functions with XAMPP
10/29/2018 1:54:49 AM.
In this section we are going to understand with php functions. PHP is very well known in the world of web-development & is a powerful tool for making dynamic and interactive Web Pages.
Mathematical Functions in PHP
10/29/2018 1:43:56 AM.
In this article you will see how to use mathematical functions in PHP. abs () function, dechex () function, sqrt() function, log() function, floor() function, ceil() function, pow() function, max() fu
Functions in PHP
10/29/2018 12:58:14 AM.
Using this article one can easily understand the concept of functions in PHP.
Exploring Kraken - A Distributed And Async PHP Framework
8/16/2018 10:16:29 AM.
PHP frameworks are noted for their developer friendly feature and robust nature. PHP itself is a widely used programming language, so the different frameworks in themselves are hugely admired and wide
XML Parser In PHP
8/13/2018 2:11:11 AM.
In this article, I explain about the XML parser in PHP. The tree-based parser transforms an XML documents to tree structure. The event-based parser views XML documents as a series of events.
Var_dump Function In PHP
8/13/2018 2:05:55 AM.
In this article, I will explain the var_dump variable handling function in PHP. The var_dump() function dumps information about a variable.
Strategy Pattern In PHP
8/13/2018 1:53:01 AM.
This article explains about Strategy Pattern in PHP. Strategy Patterns have a common pattern that helps us to create decisions on completely different cases,
MySQL Fetch Array Function in PHP
8/13/2018 1:46:27 AM.
In this article I explain the MySQL_Fetch_Array() function in PHP.
What To Choose Between PHP And ASP.NET
7/10/2018 3:54:14 AM.
In this article you will learn what to choose between PHP and ASP.NET.
How To Take Screenshot Using jQuery And PHP
1/10/2018 11:19:10 AM.
Hello all, today in this article we will learn how to take screenshots using jquery and php. So, basically we will create a webpage and in the webpage we create a button which will take screenshot usi
How To Control SQL Injection In PHP
12/7/2017 1:50:18 PM.
This is an interview question, when a person showcases himself as the FULL Stack developer, it is very important that the developer should have base knowledge on the security aspects of the applicatio
Building WordPress Theme From Scratch - Part One
10/30/2017 11:40:35 AM.
Hi all, I am writing a series to create a theme in WordPress with all functionalities like show blog post and add widgets on the front page. I will create this series for absolute beginners who want t
How To Use jQuery AJAX To Call A PHP Page
10/9/2017 12:53:51 AM.
In this video, we will see how to use jQuery AJAX to call a PHP page.
Create Favicon in PHP
6/29/2017 5:28:06 AM.
In this article I will explain Favicons in PHP. In this article I will use a small and powerful script for creating Dynamic Favicons and use the PHP GD library to manipulate the Favicon image and add
Contact Us Form in PHP
6/29/2017 5:18:49 AM.
In this article I show how to create a Contact us form in PHP.
Class and Object Function in PHP
6/29/2017 5:11:12 AM.
In this article I will discuss the get_declare_classes() and get_class_method() functions in PHP.
Calculate How Many Days in A Month Using PHP
6/29/2017 5:00:14 AM.
In this article I explain the cal_days_in_month() function in PHP. cal_days_in_month() function returns the number of the days in a month for the given year and calendar.
Polymorphism in PHP
6/28/2017 4:15:44 AM.
In this article I describe polymorphism in PHP. Polymorphism describes a pattern in Object Oriented Programming in which a class has varying functionality while sharing a common interfaces.
Join Tables With the Using Keyword in PHP
6/28/2017 3:34:17 AM.
In this article I explain how to join with the using keyword in PHP. Use the Using keyword instead of the On keyword when you want to join more than one table and the tables have the same column name,
Group By Clause in PHP
6/28/2017 2:36:06 AM.
In this article I explain how to use a MySQL group by clause in PHP. The group clause is used to group the rows of a result set based on one or more column expressions. Group by clause determines how
Introduction to PHP With EM
6/26/2017 5:08:37 AM.
This article is a basic introduction to PHP. The PHP programming language is a server-side HTML embedded scripting language. The PHP language runs on the server side.