how to get your facebook feed on your website

how to get your facebook feed on your website

add a Facebook feed on your website. Just update your Facebook page link in below code <script> (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src =...

read more
image preview before upload using php

image preview before upload using php

image preview before upload using PHP When the user selects a picture, an onChange event is triggered on the file input field and that we can use JavaScript's readURL() class to onchange event to display the image for preview. When the user choose the file, the input...

read more
How to convert an HTML website to WordPress

How to convert an HTML website to WordPress

How to convert an HTML website to WordPress Step 1: Preparing for HTML to WordPress Conversion The first and foremost thing is to choose the right hosting plan that best fits your requirements. Once you’ve purchased a plan, you will need to install WordPress and log...

read more
how to remove .php extension from url in php

how to remove .php extension from url in php

remove .php extension from url in php Just follow these steps Open .htacess file and copy below code in .htacess file   RewriteEngine On RewriteRule ^test?$ test.php Here test is your page name Now you can visit your page like abc.com/test remove ?id from url in...

read more
active class using php In 5 Minutes

active class using php In 5 Minutes

You can simply follow steps and add active class in your navigation using PHP Step1:  In Header page Modified navigation link as per your need <li class="nav-item <?php if ($phpSelf=="index.php") { echo "active"; } ?>"><a href="index.php"...

read more