Functional Work : All functions perform similar work. All functions will include and evaluates the specific file while executing the code. ...
What is the difference between function and method in php
A function is a piece of code that is called by name. It can be passed data to operate on (i.e. the parameters) and can optionally return...
How to show numeric keyboard in iOS ionic apps
I'm pretty sure you already know all the new HTML5 types for the input element, such as type=email , that trigger different virtual ke...
What is the Difference between array merge and array combine
array_merge(): Merges the elements of one or more than one array such that the value of one array appended at the end of first arr...
PHP Developer interview questions
For more questions: https://sharag.wordpress.com/2008/08/28/freshers-phpmysql-technical-interview-questions-answers/ 1. Who is the father...
How to use IF condition in mysql query
MySQL IF() takes three expressions and if the first expression is true, not zero and not NULL, it returns the second expression. Otherwise...
Guessing game in javascript
<script> var systemGuess = Math.floor(Math.random() * 100); //alert(systemGuess); while(true){ var userGuess = prompt(...
Get Current location and city details using javaScript, jquery
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js...
What should i have to do after MCA
After MCA (Master of Computer Applications) you have to do Follow the link for information http://www.webtechlearning.com/mca-future-scop...
All about Career & Money | Search By Company Name for Salary
https://6figr.com/ Is a site REAL PEOPLE. REAL SALARIES. BETTER CAREERS. Search salaries by Skill| Know where you stand by Community| AI...
Could not find gradle wrapper within Android SDK.
Error: Could not find gradle wrapper within Android SDK. Might need to update your Android SDK. Looked here: D:\Android\Sdk\tools\template...
Mysql query to delete duplicate records from a table
Here is the query to delete duplicate records from a table DELETE n1 FROM tableName n1, tableName n2 WHERE n1.id > n2.id AND n1.co...
Create a random Unique ID in javascript
function guid () { function s4 () { return Math . floor (( 1 + Math . random ()) * 0x10000 ) . toString ( 16 ) ...
Codeigniter: Session: Configured save path '' is not a directory, doesn't exist or cannot be created.
up vote down vote Working code; $config [ 'sess_save_path' ] = sys_get_temp_dir (); This allows to execute the script. ...
Encrypted Email Service
Worlds Most Secured EMail Service https://protonmail.com This service supports end-to-end encryption, which means the messages get encrypte...
Ionic Life Cycle
Introducing controller life cycle events Compared to AngularJS, Ionic offers many life cycle events: $scope.$on('$ionicView.loaded...
Disable Right click
<script language="javascript"> document.onmousedown = disableclick; status = "Right Click Disabled";...
How to get the function name in javascript
<script> function abc ( ) { console . log ( arguments . callee . name ) ; } abc ( ) ; </script>
SendGrid SMTP Configuration in Codeigniter
//SendGrid Email configuration $config['protocol'] = 'smtp'; $config['charset'] = 'utf-8'; $config[...
Sparkpost SMTP Configuration in Codeigniter
//SparkPost Email configuration $config['protocol'] = 'smtp'; $config['charset'] = 'utf-8'; $config[...
How to apply CSS styles for console using javascript
<script> console.log("%c WARNING!!!", "color:#FF8F1C; font-size:40px;"); console.log("%c This browser fea...
How to redirect www website to non-www website url using htaccess
DirectoryIndex index.html index.php RewriteEngine on RewriteCond %{HTTP_HOST} ^www\.(.+) [NC] RewriteRule ^(.*) http://%1/$1 [R=301,NE,L...
Create dynamic email in cpanel using php code
/*Host Credentials*/ $host = "Host Name"; $port = "Port Number ex. 2083"; $HostUserName = "Your cpanel username...
How to disable scroll for input type number in HTML
Here is code for removing the input type number spinners or arrows and disable scrolling value using javascript and css <script> ...
How to clear Jquery validation plugin form
<script> $.fn.clearValidation = function () { var v = $(this).validate(); $('[name]', this).each(function ...
Popular Posts
- Detecting the Ajax request in Core PHP
- Demanding a price for software development
- Payment Gateway Options and Pricing in India
- How to integrate SEND Grid with Codeigniter
- How to print document content with jquery
- Add one day to the today date in php
- File Upload Conditions helper in Codeigniter
- Address auto fill city, state, district, country, pincode
- Codeigniter 4 Email Code
- How do I run a PHP script using windows Task Scheduler?