Msaini Calender 2020
styofa doing anything

Origami Around
Alisa U Zemlji Chuda

No title available
I'd rather be in outer space 🛸
TVSTRANGERTHINGS

PR's Tumblrdome
almost home
Not today Justin

titsay
"I'm Dorothy Gale from Kansas"
Three Goblin Art
Lint Roller? I Barely Know Her

oozey mess
art blog(derogatory)

❣ Chile in a Photography ❣
sheepfilms
Stranger Things

@theartofmadeline
RMH

seen from Canada

seen from South Korea

seen from United States
seen from Malaysia
seen from United States
seen from Australia

seen from United States

seen from India
seen from United States

seen from United Kingdom

seen from United States

seen from Greece
seen from United States

seen from Malaysia

seen from United States

seen from Türkiye

seen from Singapore
seen from Malaysia

seen from United States
seen from Thailand
@mukeshbagri
Msaini Calender 2020
Black Granite
Black Granite
View On WordPress
html validation form
1. Number Validation Set Max Value Your Choice. maxlength=”10″
this.maxLength) this.value = this.value.slice(0, this.maxLength);" maxlength="10" autocomplete="off" required>
View On WordPress
Change date format in php
Change date format in php
Best Way Change Your data base date As you wise format.
Real Date Format For Server Side :-
date_default_timezone_set(“Asia/Kolkata”); $DateTime=date(“Y-m-d H:i:s”); $Date=date(“Y-m-d”);
Convert Date your choice :-
$newDate = date("d-m-Y H:i:s", strtotime($DateTime)); $newDate = date("d-m-Y", strtotime($Date)); Note : Happy to use........
View On WordPress
How to Generate PDF from MySQL Data using PHP
How to Generate PDF from MySQL Data using PHP
In this tutorial I explains how to generate PDF from MySQL Data using PHP. You are going to see how to convert MySQL Data into PDF using FPDF library.
What id FPDF ?
FPDF is a PHP class which allows to generate PDF files with PHP, that is to say without using the PDFlib library. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.
FPDF has other…
View On WordPress
Data Table Short Code
Data Table Short Code
Default ordering (sorting)
With DataTables you can alter the ordering characteristics of the table at initialisation time. Using the order initialisation parameter, you can set the table to display the data in exactly the order that you want.
The order parameter is an array of arrays where the first value of the inner array is the column to order on, and the second is 'asc'(ascending ordering)…
View On WordPress
SQL FOREIGN KEY Constraint
SQL FOREIGN KEY Constraint
A FOREIGN KEY is a key used to link two tables together.
A FOREIGN KEY is a field (or collection of fields) in one table that refers to the PRIMARY KEY in another table.
The table containing the foreign key is called the child table, and the table containing the candidate key is called the referenced or parent table.
Look at the following two tables:
“Persons” table:
PersonID LastName FirstName Ag…
View On WordPress
CKEditor does not show up on any mobile browsers
CKEditor does not show up on any mobile browsers
You can, however, enable CKEditor is unsupported environments (at your own risk) by changing the CKEDITOR.env.isCompatible flag to true, which causes CKEditor to load in all environments, including the unsupported ones. Note, however, that this has one drawback: it not only enables CKEditor in modern mobile devices, but also tries to load it in old Internet Explorer versions (6&7) where it no…
View On WordPress
How to remove white space around the product image in Magento
How to remove white space around the product image in Magento
Magento consists of inbuilt resize function which is used in many phtml files like list.phtml and product view pages.It looks like this:
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(122, 106); ?>" />
This default resize function resize the images with white spaces around the images. To avoid this Situation We have to add a line before that…
View On WordPress
Resize Product image without white space in magento
Resize Product image without white space in magento
Useing keepFrame(false) before resize function ,we can remove white space from image
<?php $_img = ‘<img src=”‘.$this->helper(‘catalog/image’)-> init($_product, ‘image’)->keepFrame(false)->resize(200,300).'” alt=”‘.$this->htmlEscape($_product->getImageLabel()).'”/>’; ?>
View On WordPress
Date function In php
Date function In php
$dob = date('Y-m-d',strtotime($dob)); $dt = date('Y-m-d h:i:s');
View On WordPress
HTML5 Form Validations with Pattern Matching In HTMl
HTML5 Form Validations with Pattern Matching In HTMl
letters : pattern="[A-Za-z]+" accepts only capital or small letters. <form> <input type="text" pattern="[A-Za-z]+" title="letters only" required /> <input type="submit" /> </form>
View On WordPress
remove php extension in htaccess
remove php extension in htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}.php -f RewriteCond %{REQUEST_URI} !/$ RewriteRule ^(.*)$ $1\.php
View On WordPress
change extension .php to html in .htaccess
change extension .php to html in .htaccess
RewriteEngine on RewriteRule ^(.*)\.html$ $1.php
View On WordPress
Magento get wishlist count in the header
Magento get wishlist count in the header
Magento get wishlist count in the header when a user is logged in isLoggedIn()): ?> getCustomer(); $wishlist = Mage::getModel('wishlist/wishlist')->loadByCustomer($customer, true); // get the amount of items (2 of one item counts as 1) echo $wishlist->getItemsCount(); ?>
View On WordPress
Show product wish-list count in product page in magento
Show product wish-list count in product page in magento
Show product wish-list count in product page in magento:- Add below line of code in view page:- app/design/frontend/default/your theme/template/catalog/product/view.phtml getConnection('core_read'); $productid = $_product->getId(); $total_wishlist = $readConnection->fetchCol("SELECT count(*) FROM wishlist_item where product_id = '$productid' "); echo 'whishlist count:'.$total_wishlist['0']; ?>
View On WordPress
SMS Send String URL
SMS Send String URL
1. String URL :- http://mainadmin.dove-sms.com/sendsms.jsp?user=username&password=password&mobiles=30XXXXXXXX&sms=msgbody&senderid=Dovesf&clientsmsid=324554&scheduletime=2013-02-14 12:12:12 2. String URL :- http://mainadmin.dove-sms.com/sendsms.jsp?user=username&password=password&mobiles=30XXXXXXXX,234XXXXXXXXXX&sms=msgbody&senderid=Dovesf&scheduletime=2013-02-14 12:12:12 3. String URL :- Balance…
View On WordPress