PHP Dynamic Drop Down Menu, Horizontal Menu in PHP | PHP Tutorial for Beginners
What is Menu bar or Horizontal menu?Menu bar or Horizontal menu is one top most element of any website from where user can navigate to multiple pages. It Helps the user of your site to easily find out...
View ArticleSimple Contact Us Form in Php | PHP Tutorials for Beginners
Contact or Feedback Form in PHP:Contact form is very essential for any web site. You can find every website have contact us form. With Contact us form or feedback form the owner of site comes to know...
View ArticlePHP Implode and PHP Explode Function | PHP Tutorial for Beginners
In this tutorial of php code for beginners we will see how to use php explode and implode function.PHP explode() Function:-Php explode function is used to break a string into an array. We specify the...
View ArticlePHP Session Example and PHP Session Tutorial | PHP Tutorials For beginners
In this tutorial of php code for beginners we will see how to use php session and give you proper php session tutorial.What is php session:-In normal HTML web site the boundary of data is limited that...
View ArticlePHP trim() Function | PHP Tutorials for Beginners
In this tutorial of php code for beginners we will show you trim function in php.trim():Php trim() removes the extra white space from the string.Example Without trim function:-<?phpecho "#"." Php...
View ArticlePHP Redirect(301 Permanent and 302 temporary redirect) or header() Function...
In this tutorial of php code for beginners we will see how to use php redirection function like 301 temporary redirect and 302 permanent redirect.Some time we want to redirect user to specific page...
View ArticleCreate Your Own Captcha in Php or Create Feedback Form with Captcha | PHP...
In this tutorial of php code for beginners we will see how to create your own capcha for your feedback, registration or any other form.Step 1:- Create captcha.php file and add the below code in...
View ArticleRemove Default Canonical Tag from WordPress Pages or Posts | PHP Tutorials...
In this tutorial of php code for beginners we will show you how to remove the in built canonical tag from WordPress pages or posts.Whenever we create any post in WordPress and publish it, WordPress...
View ArticleShowing the Posts of Perticular Category in WordPress | PHP Tutorials for...
In this tutorial of php code for beginners we will show you how to show the posts of perticular category in WordPressThe below code will show only posts of category id 1.<ul><?phpglobal...
View ArticleDefine Constants in Php | PHP Tutorials for Beginners
What is Constant:-A constant is an identifier for a any value. Constant is case-sensitiv and constant identifiers are always uppercase. A constant name always starts with a letter or underscore. A...
View ArticleInserting Data to Custom Table in WordPress | PHP Tutorials for Beginners
In this tutorial of php code for beginners we will show you how to insert data to custom table in WordPressWe are using different table of WordPress to fetch or store data. But some time during...
View ArticleDelete Multiple Records Using Checkboxes in Php | PHP Tutorials for beginners
In this tutorial of php code for beginners we will show you how to delete multiple records using checkboxes.<script type="text/javascript"...
View ArticleAccess Another Database in WordPress Or Get Data of Another Database in...
In wordpress we usually use the database which we have configured in "wp-config" file and access them using global $wpdb variable. But when situation arise and we require to get data from another...
View ArticleCharacter Count in Jquery | PHP Tutorials for Beginners
In this tutorial of php code for beginners we will show you example how to count character of text field using jquery.<html> <head> <script...
View ArticleResize Image or Crop image Using GD Library in Php | PHP Tutorials for Beginners
Image resize or image cropping is one of the important part during any website building. To make our uploaded image fix exactly in same diamention in front end we need to resize or crop that image.In...
View ArticleFile Download Script in Php | PHP Tutorials for Beginners
In this tutorial of php code for beginners we will show you how to download any files from web server to local machine. When you want to download any file you need to send the file name to this...
View ArticleReading extension of uploaded file in php | PHP Tutorials for Beginners
In this tutorial of php code for beginners we will show you how to fetch or read the extension of currently uploaded file.There are two simple way to read the extension of file, one is by using the php...
View ArticlePreventing SQL Injection | PHP Code For Beginners
If you are spent any serious time developing Web Application, you know the risk of SQL injection. Sql injection is caused when data is inserted into database that hasn’t been properly sanitized. For...
View ArticlejQuery show() and hide() Function | PHP Code for Beginners
In this tutorial of php code for beginners we will show you how to use jquery show() and hide() functions.jQuery show() and hide() are the most common used functions. They are used to show or hide...
View ArticleEncrypting Password using md5() function | PHP Tutorial for Beginners
MD5():-The MD5 message-digest algorithm is a widely used cryptographic hash function that produces a 128-bit (16-byte) hash value. MD5 has been utilized in a wide variety of security applications, and...
View ArticleCreating a Search Engine in PHP and MySQL Or Creating Search Form in PHP...
In this tutorial of PHP Tutorial for Beginners we will show how to create "Search Engine in PHP with MySQL or how to create your Search Form in PHP by using MySQL".What is Search Engine:-Search Engine...
View ArticleChecking USER AGENT of Client in Php | PHP Tutorial for Beginners
In this tutorial for Php Tutorial for Beginners we will show you the example of checking user agent in PHP.The first question will be WHAT IS USER AGENT?It is a software that is acting on behalf of...
View ArticleSome Basic But Useful WordPress Functions | PHP Tutorial for Beginners
In this tutorial for Php Tutorial for Beginners we will show you some basic but important functions of WordPress1 - $current_category = single_cat_title("", false);Display current category Title.2 -...
View ArticleDownload & save a remote image on your server using PHP | PHP Tutorials for...
In this tutorial of Php Tutorials for Beginners we will show you how to download and save images from remote server to your server.To download and save images from remote server to your server we need...
View ArticleDisable Right Click using JavaScript | PHP Tutorial for Beginners
In this tutorial of Php Tutorials for Beginners we will show you how to disable right click using javascript.Here is the javascript code to disable right click.<script...
View Article