<input type="file" multiple accept="image/*" class="btn btn-file" id="fileToUpload" name="...
Codeigniter Multiple file upload Code easy way
function do_upload () { $this -> load -> library ( 'upload' ); $files = $_FILES ; $cpt = count ( $...
Google Distance Between Places using lat lng or address location names
https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=kunkalamarru&destinations=chirala Output { ...
PHP code to extract emails from any type of text
<?php ini_set('memory_limit', '-1'); function extract_email_address ($string) { foreach(preg_split('/\s/'...
Jquery File validations easy coding
This is very easy to understand and customize file upload extension validation and size validation with jquery code..... In this code swal(...
United States of America All List of Cities in Mysql
CREATE TABLE IF NOT EXISTS states ( id INT NOT NULL AUTO_INCREMENT , name CHAR ( 40 ) NOT NULL , abbrev CHAR ( 2 ) NOT...
Javascript Debugging Beginner tutorial
Beginner Guide to Page and Script Debugging with Chrome Download Examples http://www.codeproject.com/Articles/273129/Beginner-Guid...
Handling Radio Buttons In Angular JS
This is the example to handle radio button in the angular JS forms <!DOCTYPE html> <html> <script src="http://a...
How do I redirect all visitors to HTTPS/SSL
Hi, This is the PHP Script to redirect all the http users to the https <?php if($_SERVER['HTTPS']!="on"){ if(subs...
Reset form for bootstap select plugin used forms
When the user click on the reset button of a form, the form will be reset to default values.. $(':reset').on('click', f...
How to display Javascript Errors with line and column numbers
window.onerror = function (errorMsg, url, lineNumber, column, errorObj) { alert('Error: ' + errorMsg + ' Script: ' + url ...
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?