You can easily use PHP array in javascript you only need to convert PHP array into JSON format Using json_encode() function, PHP array can be converted to JavScript array and accessible in JavaScript. whatever the array type is a single or multidimensional or indexed or associative array. You must have tried this method when you […]
In this tutorial, you will learn how you can add multiple image into the bootstrap slider, that help you to add some cool images into your website sliding. Bootstrap multiple image slider will look amazing in the webpages. Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the […]
In this tutorial, you will learn how to install Django on Windows step by step guide. Django is a python web framework used for rapid web development. Installing Python You can download & install the setup of Python from their official website https://www.python.org/downloads/ You can check the right version of python from below : Django version […]
You have think or searched that what is $ and $$, if yes then, your search end here. $$var is known as reference variable where as $var is normal variable, in the same way program can create the variable name it can create any other string. Let us take a example to understand:- <?php […]
Print and echo both are language constructs that means the PHP compiler knows the exact syntax of the echo/print() statement. Language constructs act like some keywords, they already defined by the compiler. Let come to the Differences:- echo do not return anything while print() return value(1). echo is a statement that is used to […]
Removing extension from urls have advantage that it’s hide the backend technology from end users. First step is to create a .htaccess file on your document root and write these codes to remove file extensions. Your current url look like this : You need to change the url on your document from http://yoursite.com/demo.php to http://yoursite.com/demo […]