Friday, 30 May 2014
Monday, 12 May 2014
Get User info using JS SDK after login with Facebook
To day iam working with facebook js sdk it is very easy to get user details after user login to facebook.
<script src="http://connect.facebook.net/en_US/all.js"></script> <script type="text/javascript"> FB.init({ appId : 'your AppId', status : true, cookie : true, xfbml : true }); FB.login(function (response) { getFBuserData (); }); function getFBuserData () { FB.api('/me', function(data){ var userdetails = data.first_name+ data.last_name + data.id+data.gender+data.link+data.birthday+data.email; alert(userdetails); }) } </script>
Friday, 9 May 2014
How to install SSL Certificates with Apache 2 on Ubuntu
Step – 1 Create a Certificate Signing Request(CSR file)
In the DN for most servers are the following fields: Country, State (or Province), Locality (or City), Organization, Organizational Unit, and Common Name.
Saturday, 3 May 2014
Merge images using php
Iam explain about how to merge images using php
<?php header('Content-Type: image/jpeg'); $backgroundimage = imagecreatefromjpeg('tshirt.jpg'); $overlayimage= imagecreatefrompng('Buy-Now.png'); imagecopy($backgroundimage, $overlayimage, 100, 200, 0, 0, 130, 40); imagejpeg($backgroundimage, null, 100); ?>Before merge Images:
After merge the Images:
Subscribe to:
Posts (Atom)