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...
Popular Posts
- How to use Sumo Select in jquery with example
- Professional Angular JS Pdf download
- Use of undefined constant EXT - assumed 'EXT' Filename: core/MY_Loader.php
- The Guide to integrate Bootstrap With CodeIgniter
- Datetime picker in jquery simple example with dd/mm/yyyy format
- Fatal error: Call to undefined function base_url()
- mysqli function to get the last inserted record or row id
- CREATE A JAVASCRIPT PROGRAM TO ACCEPT FIRSTNAME AND SURNAME FROM PROMPT BOX AND DISPLAY FULLNAME
- CREATE A JAVASCRIPT PROGRAM TO ACCEPT 2 NUMBERS FROM PROMPTBOX AND DISPLAY SUM, DIFFERENCE(SUBTRACT), MULTIPLICATION AND DIVISION BY USING FUNCTIONS
- CREATE JAVASCRIPT PROGRAM TO CHECK IF USERNAME IS ANIL AND PASSWORD IS ANIL THEN DISPLAY WELCOME ANIL IN ALERT BOX IF THE USERNAME AND PASSWORD IS NOT ANIL THEN DISPLAY INVALID USER IN ALERT BOX