Posts

Showing posts from March, 2020

Medical Store System

Image
Medical Store System is used to manage the stock and sale/ Purchase. Modules Users Customer Rack Category Supplier Product Return Product to Supplier Billing Sale Report Purchase Report Purchase Return Report Cash Report Email Configuration Currency Configuration Organization Configuration Prerequiration  Apache Server Mysqli Database Download the Source Code

How to Make ID Card Using PHP Mysql and HTML

Image
In this article, you will learn How to Make an ID Card Using PHP Mysql and HTML. index.php view.php id.php print.php upload.php index.php <?php mysql_connect('localhost','root',''); mysql_select_db('id_card'); ?> <html> <head> <link rel="stylesheet" type="text/css" href="css/form.css"/> </head> <body> <div class="wrapper"> <div class="header"> <ul> <li><a href="index.php">Entry</a></li> <li><a href="view.php">View</a></li> <li><a href="print.php">Print</a></li> </ul> </div> <div class="inner_wrapper"> <form method="POST" action="upload.php" enctype="multipart/form-data"> <div class="row1"> <h1>Form</h1>

How to Translate theme language in WordPress

Image
The world has so many languages. Mostly People write in Own language but readers can not read another language so in this article we will explain How to Translate theme language in WordPress.  Use a Plugin it’s by Google Install Plug Google Translator  Goto Plugins-> Add Plugin in left Menus Search  Translate WordPress – Google Language Translator  on the top right side. Now click on  Install  Button. Now  Activate  Button will be enabled. Click on  Activate  Button. After that plugin will be installed and it will be shown on the left side Setting Menu. Open the Google Translator Plugin Settings. Choose the original language of your website in Read Full article

How to Install Plugin in WordPress

Image
WordPress is a CMS(Content Management System) which is used to design a website without coding. The plugin is the most important role in WordPress which is to provide extra features. In this article, you will learn How to Install a Plugin in WordPress. Follow the Steps to install Plugin in WordPress:-  if you want free plugin from WordPress server Login into your WordPress Mouse over the left menu in  Plugins. Click on the  Add New. Search  for a plugin you want. Click on  Install Now  Button. when finished installation clicks on  Activate  Button. If you have already Downloaded from third Party First  login  to  WordPress. Click on  Add New  submenu of the left menu in Plugins. Click on the  upload Plugin  Button. Browse  your  Zipped file   Plugin  from your local computer. Now Click Read Full article

How to Install Theme in WordPress

Image
WordPress is used for design websites without coding. In this article, you will learn How to Install Theme in WordPress. Steps to Install the theme:- if you want free Theme from WordPress server   Login  into WordPress Goto left Menus select  Appearance -> Themes Click on  Add New  Button Choose any theme which you want to install then click on  Install  Button. Now Press  Activate  Button. If you have already Downloaded from third Party First  login  to  WordPress. Click on  Themes  in the left menu of Appearance. Click on  Add New  Button Press the  upload Theme  Button. Browse  your  Zipped file   Theme  from your local computer. Now Click on  Install Now  Button. Now  Activate  Theme . Download  WordPress Theme Read full article  

How to Install WordPress

Image
In this article, you will learn How to Install WordPress. WordPress is great Technology to create websites. Using WordPress very requirement of the coding. Basically, WordPress is a CMS (Content Management System). Follow the Steps to Install WordPress:-  Download  WordPress From  here Extract download zip file into your local server Xampp(htdocs)/Wamp(www) folder. Run-on Web Browser using  localhost/Wordpress Select your Language. Click on  Continue  Button. Click in  Let’s Go  button. Create  Database, username, and password  in  localhost/PHPMyAdmin . Fill the detail  Database Name, username, password, Database Host and Table Prefix  on the opened page. Click on  Submit  Button. now Click on  Run the Installation  Button. You will be redirected to the welcome page. Enter the detail  Site Title, Username, Password, Confirm Password and Email  for Admin. Click on  Install  Button. You will be received a Success Message. Click on the  login  button. Login Page

How to Create Animation using jQuery

In this article, you will learn How to Create Animation using jQuery Example:- <html> <head> <title>Animation in jQuery</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ var div = $("div"); div.animate({left: '250px'}, "slow"); div.animate({fontSize: '3em'}, "slow"); }); }); </script> </head> <body> <button>Click to Animation</button> <div style="background:red;color:#fff;height:200px;width:500px;position:absolute;">Welcome to Hub of Tutorials</div> </body> </html> Read Full Article

Complaint Management System using PHP

Image
Language Used:  PHP Database:  My SQL User Interface Design         :   HTML, AJAX,JQUERY,JAVASCRIPT Web Browser:  Mozilla, Google Chrome, etc. Software:  XAMPP/wamp Server Modules Complaint Management System using PHP Admin Users Admin create a category manage category create Subcategory manage Subcategory create state manage the state update remark on complaints Manage users check user logs change password Logout Users User Registration User forgot Password lodge complaint Complaint History Profile Management Change Password Dashboard Logout Download Source Code