Solution Check the datatypes The datatypes must be same type and size
Bootstrap Modal show pop up automatically code
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet" type="text/...
Meta-tags for mobile better optimization
The simple answer is: viewport is good, the others are... less good. viewport viewport is a widely supported de-facto standard -...
Blowfish Encryption and Decryption in php
function decrypt_blowfish ( $data , $key ){ $iv = pack ( "H*" , substr ( $data , 0 , 16 )); $x = pack ( "H*...
Fatal Error: CodeIgniter “Using $this when not in object context” in function
A PHP Error was encountered Severity: Error Message: Using $this when not in object context Filename: helpers/user_activity_helper....
How to do error logging in CodeIgniter (PHP)
CodeIgniter has some error logging functions built in. Make your /application/logs folder writable In /application/config/config.php...
Unable to access an error message corresponding to your field name Username.(xss_clean)
The reason for this error is you didn't loaded the security helper the following is the way enable security helper with autoload.php ...
How to change browser address bar without reloading page - HTML/Javascript
By using: window . history . pushState ( "string" , "Title" , "newUrl" ); This is new in HTML 5. Your...
Payu Money payment gateway testing error
This is confusing for the first timers. Supplied default key and salt will not work straight away. In order to test the gateway usin...
Nested controllers example in angular js
<div class = "spicy" > <div ng-controller = "MainController" > <p> Good {{timeOfDay}}, {{na...
__set and __get magic methods in php example
private $data = array(); Class API Module{ public function __set($var_name, $var_value){ $this->data[$var_name]=$var_val...
Javascript to get the domain name and port number of a website
<script> alert("Protocol type: "+location.protocol) alert("Website url: "+document.domain); alert("P...
What is Angular.copy
Creates a deep copy of source , which should be an object or an array. If no destination is supplied, a copy of the object or array is...
bootstrap in angular js
Use this function to manually start up angular application Angular will detect if it has been loaded into the browser more than once an...
sql date quires
select date from (select date_add(current_date(), -1, "DAY") as date), (select date_add(current_date(), -2, "DAY") ...
Angular JS form validation
https://scotch.io/tutorials/angularjs-form-validation <!-- index.html --> <!DOCTYPE html> < html > < head > ...
Popular Posts
- Create dynamic email in cpanel using php code
- How to disable scroll for input type number in HTML
- Replace all occurrences in javascript
- Address auto fill city, state, district, country, pincode
- Simple Login with Highlevel Security IN PHP using sessions
- How to clear Jquery validation plugin form
- How to show numeric keyboard in iOS ionic apps
- What is the difference between function and method in php
- PDF view without download and print
- What is the Difference between array merge and array combine