You need to log in to vote

The blog owner requires users to be logged in to be able to vote for this post.

Alternatively, if you do not have an account yet you can create one here.

Powered by Vote It Up

 
 
   
Feb
 

27

 

Resuming local bank withdrawals to India – by Paypal

     
3
 

I and my friend received mail from Paypal as starting Paypal withdrawals from March 3rd 2010 [Wednesday].

We have been diligently working with the RBI and our business  partners to  resume Indian bank withdrawals for the thousands of Indian businesses who depend on PayPal to sell their goods or services in the global marketplace.
Today, we are [...]


Share/Bookmark Category : Payment Gateway Read more

   
Jan
 

22

 

Calling Multiple Functions onclick Javascript

     
0
 

I am writing here to handle multiple Javascript functions in OnClick Event. To use multiple functions on Events, you want to add functions by separating with semicolon (;), For Ex: onclick = “testfun1(); testfun2();”. Each functions will run serially, first will be testfun1() and second testfun2(). To explain this functionality, I have enclosed working code [...]


Share/Bookmark Category : Java Script Read more

   
Dec
 

25

 

png alpha transparency ie6 fix

     
0
 

After very long gape, posting new article.
GIFs, JPEGs, PNG images are playing vital role in web development. Like GIFs, the PNG is great for displaying small images with few colors, like logos and icons. PNGs support alpha transparency.
First of all, what is called as alpha transparency? GIF files are only
capable of displaying a pixel as [...]


Share/Bookmark Category : CSS Read more

   
Nov
 

28

 

Class to custom SQL DATETIME format using php

     
0
 

This class will be used to custom the SQL Datetime format in your style. This may very useful for web developers to make their work easy.
Class (Store as “sql.date.class.php“):
<?php
class FormatDate {
public function Date($SQLdate, $format) {
$maketime = strtotime($SQLdate);
return date($format,$maketime);
}
}
$dateobj = new FormatDate;
?>
Implementation (Store as “index.php“):
<?php
require_once “sql.date.class.php”;
echo $dateobj->Date(”2009-11-28 6:44:07″,”F j, Y, g:i a”); //Argument 1 is a [...]


Share/Bookmark Category : PHP Read more

Page 1 of 1812345»...Last »