<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Webinstitute.in</title>
	<atom:link href="http://webinstitute.in/feed/" rel="self" type="application/rss+xml" />
	<link>http://webinstitute.in</link>
	<description>Learning Web Development is Easy!</description>
	<lastBuildDate>Fri, 17 May 2013 10:32:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Facebook Registration With WordPress</title>
		<link>http://webinstitute.in/facebook-registration-with-wordpress/</link>
		<comments>http://webinstitute.in/facebook-registration-with-wordpress/#comments</comments>
		<pubDate>Fri, 17 May 2013 10:29:18 +0000</pubDate>
		<dc:creator>ashwin</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://webinstitute.in/?p=4285</guid>
		<description><![CDATA[Today we will tackle a very interesting way to integrate your Facebook account with your WordPress account, without the need to register separately on WordPress. You might ask as to why we need to do it. We see Facebook integration a lot these days, and there are multiple plugins available on WordPress like Simple Facebook [...]]]></description>
				<content:encoded><![CDATA[<div>
<p>Today we will tackle a very interesting way to integrate your Facebook account with your WordPress account, without the need to register separately on WordPress. You might ask as to why we need to do it. We see Facebook integration a lot these days, and there are multiple plugins available on WordPress like Simple Facebook Connect, which do the same. However, they add another step, i.e, you need to register on WordPress once, even after you connect from Facebook. I personally feel that this hampers the user experience a little bit, and I want to circumvent this situation by using the Facebook details to register a user on WordPress. At a later stage, we can use these details to log him in.</p>
</div>
<p>For the purpose of this tutorial, we will be using the Facebook JS SDK, in conjunction with the AJAX support in WordPress. We will be using Action Hooks provided by WordPress to do everything in our code. So, let’s take a look at what needs to be done.</p>
<p>&nbsp;</p>
<h1>Initializing the Facebook JS SDK</h1>
<p>The first logical step to integrate Facebook is to initialize the Facebook JS SDK. You will need to create a Facebook app first, and when you get the API key from your application page, you can use those to asynchronously initialize the Facebook API. For this tutorial, we will be using native AJAX, but the WordPress</p>
<p>So, you can write the following in your header, or wherever you plan to put the login button.</p>
<p>First, we need to initialize FB JS SDK in our page.</p><pre class="crayon-plain-tag">&lt;div id="fb-root"&gt;&lt;/div&gt;
&lt;script&gt;
        window.fbAsyncInit = function() {
            FB.init({
                appId  : 'YOUR_APP_ID',
                status : true,
                cookie : true
            });   
        };
        (function() {
            var e = document.createElement('script');
            e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
            e.async = true;
            document.getElementById('fb-root').appendChild(e);
        }());

&lt;/script&gt;</pre><p>Here, we would need an empty container for FB to integrate its SDK into.</p>
<p>&nbsp;</p>
<h1>Making the AJAX call</h1>
<p>The next step would to create a link which will trigger the process.</p><pre class="crayon-plain-tag">&lt;a href="#" id="fbLogin"&gt;Login with Facebook&lt;/a&gt;</pre><p>Now, we will see the logic of the trigger itself. There can be 2 scenarios here.</p>
<ul>
<li>The user is already logged into Facebook, and has authorized the app.</li>
<li>The user is either not logged into Facebook, or has not authorized the app, or both.</li>
</ul>
<p>We will handle both cases in our code. The flow of the code is as follows.</p>
<ul>
<li>Get the current login status from Facebook using <pre class="crayon-plain-tag">FB.getLoginStatus()</pre></li>
<li>If the response comes with status other than <code>connected</code>, call <pre class="crayon-plain-tag">FB.login()</pre>  with permissions for email. This email will be used for WP registration.</li>
<li>Once the user logs in, replace the original response with the new response, and trigger the click again.</li>
<li>Call <pre class="crayon-plain-tag">FB.api()</pre>  for the user, and prepare the data to be sent for registration/login.</li>
<li>Make the AJAX call, and if it succeeds, refresh the page.</li>
</ul>
<p>Here’s how the code would look.</p><pre class="crayon-plain-tag">&lt;script&gt;
        $('#fbLogin').click(function() {
            FB.getLoginStatus(function(response){
                if(response.status !== 'connected') {
                    //console.log(response.authResponse);
                    FB.login(function(fbresponse) {
                        //console.log(response.authResponse);              
                        if(fbresponse.status=="connected") {
                            response = fbresponse;
                            $('#fbLogin').click();
                        }
                    }, {scope: 'email'});
                }
                if(!response.authResponse) {
                    return;
                }
                FB.api('/me', function(resp) {
                    var data = {
                        authResp : response.authResponse,
                        userResp : resp
                    };
                    //console.log(data);
                    jQuery.ajax({
                        method : 'GET',
                        url : '&lt;?php bloginfo('template_directory'); ?&gt;/checkFB.php?callback=?',
                        data : data,
                        dataType : 'jsonp',
                        jsonpCallback : 'reply',
                        contentType : 'application/json',
                        success : function(resp) {
                        //console.log(resp);
                            if(resp.status == "Success")
                                window.location.reload();
                            else
                                console.log(resp.errors);
                        },
                        error : function(e) {
                            console.log(e);
                        }
                    });
                });        
            });
        });
&lt;/script&gt;</pre><p>&nbsp;</p>
<p><span style="font-size: 2em;">Processing the AJAX call</span></p>
<p>As you would have noticed in my code, I have sent the AJAX request to a file called checkFB.php. What we need to do there is again a multi-case scenario. Let’s look at the possible cases before seeing how the code will look.</p>
<ul>
<li>Case 1 : The user is registering with Facebook and does not have an existing WP account. In this case, we will simply register him using the details from the Facebook response.</li>
<li>Case 2 : The user is registering with Facebook, but already is registered with WordPress. We will determine it by checking the WP email against his Facebook email. If they match, we will create a meta field for the WP account.</li>
<li>Case 2a : The user is registered in WP, is trying to register with Facebook, but has another Facebook account attached with his original WordPress account. In this case, we will give him an error.</li>
<li>Case 3 : The user is registered with Facebook and with WordPress as well. Just log him in.</li>
</ul>
<p>As for the process, we will be using <pre class="crayon-plain-tag">wp_set_auth_cookie()</pre>  to log the user in, since it does not need a password.</p>
<p>Here’s how the checkFB.php looks.</p><pre class="crayon-plain-tag">&lt;?php
//includes
require_once('../../../wp-load.php');
require_once('../../../wp-config.php');

/*
$_REQUEST is sent with 2 arrays. We will retrieve the ID and then start checking.
*/
$login = $_REQUEST['userResp']['id'];

//Check if the username exists already
$id = username_exists($login);
$errors = array();

//Case 1 : When the ID doesn't exist.
if(!$id) {
    $email = $_REQUEST['userResp']['email'];
    $existingID = email_exists($email);
    //Case 1 confirmed : If the email also does not exist, we can proceed with registration.
    if(!$existingID) {
        $pass = wp_generate_password( $length=12, $include_standard_special_chars=false );
        $userData = array();
        $userData['user_login'] = $login;
        $userData['user_email'] = $email;
        $userData['user_password'] = $pass;
        $userData['user_nicename'] = $_REQUEST['userResp']['first_name'] .' '. $_REQUEST['userResp']['last_name'];
        $userData['first_name'] = $_REQUEST['userResp']['first_name'];
        $userData['last_name'] = $_REQUEST['userResp']['last_name'];
        $insertStatus = wp_insert_user($userData);
        if(is_wp_error($insertStatus)) {
            $errors = array_merge($errors, $insertStatus-&gt;getErrorMessages());
        }
        else {
            wp_set_auth_cookie($insertStatus, true);
        }

    }
    //Case 2 : When the email ID the user has attached to his FB account is also registered here.
    else{
        $userFB = get_user_meta($existingID, 'fbid', true);
        //if a user is already attached to the email.
        if(!empty($userFB)) {
            //Case 2a : Here we match the Facebook ID of the user to the facebook ID of the email ID.
            if($userFB == $login)
                wp_set_auth_cookie($existingID, true);
            else {
                array_push($errors, __("Another Facebook ID seems to be attached to your account. Please check."));
            }
        }
        //Create the link between the user's email ID and the facebook ID for the first time, and log him in.
        else {
            if(!add_user_meta($existingID, 'fbid', $login, true)) {
                array_push($errors, __("Sorry! We were unable to link your FB account to your Webinstitute account."));
            }
            else {
                wp_set_auth_cookie($existingID, true);
            }
        }
    }
}

//Case 3 : When the user is already registered
else {
    wp_set_auth_cookie($id, true);
}

$resp = array();
if(!count($errors)) {
    $resp['status'] = "Success";
    $resp['loggedIn'] = true;
    $resp['errors'] = $errors;
}
else {
    $resp['status'] = "Failure";
    $resp['loggedIn'] = false;
    $resp['errors'] = $errors;
}
echo "reply(".json_encode($resp).")";

?&gt;</pre><p>Finally, the response will be sent, and if there are any errors, they will be logged in the console for now. However, the errors may be processed in any way you want.</p>
<p>I hope this tutorial helps you in Facebook integration with WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://webinstitute.in/facebook-registration-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home Page Design Strategies of Popular User Generated Content Sites</title>
		<link>http://webinstitute.in/home-page-design-strategies-of-popular-user-generated-content-sites/</link>
		<comments>http://webinstitute.in/home-page-design-strategies-of-popular-user-generated-content-sites/#comments</comments>
		<pubDate>Thu, 16 May 2013 08:08:55 +0000</pubDate>
		<dc:creator>Siddharth Goyal</dc:creator>
				<category><![CDATA[UI and UX]]></category>

		<guid isPermaLink="false">http://webinstitute.in/?p=4264</guid>
		<description><![CDATA[Internet is ever evolving. The websites are now being developed on scientific basis and a great stress is to be laid on how to make user experience better. In today&#8217;s post we are going to analyze some of the pointers about creating a good home page for a site which has a lot of user [...]]]></description>
				<content:encoded><![CDATA[<p>Internet is ever evolving. The websites are now being developed on scientific basis and a great stress is to be laid on how to make user experience better. In today&#8217;s post we are going to analyze some of the pointers about creating a good home page for a site which has a lot of user generated content.</p>
<h2>How such sites differ from other sites</h2>
<p>While you read this analysis, you must understand, that the sites analyzed in this post are largely those that allow people to create content on them. These are different from brochure style business websites and require the users to sign up before they can do much.</p>
<h2>Facebook</h2>
<p>Now, to begin, let&#8217;s take a look at facebook:</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://webinstitute.in/wp-content/uploads/2013/05/facebook.com-2013-5-14-20-31-22.png"><img class=" wp-image-4265 aligncenter" alt="facebook.com 2013-5-14 20-31-22" src="http://webinstitute.in/wp-content/uploads/2013/05/facebook.com-2013-5-14-20-31-22-1024x633.png" width="600" /></a></p>
<p>This is the facebook home page as on Firefox. Note that the way it appears keeps varying from time to time and from browser to browser. But one thing remains constant. The part on the right hand side of the page. At the top we have a place for logging in and in the middle towards right, we have a sign up form. On left, there is explanation about what the site is about. There are 2 advantages to this:</p>
<ol>
<li><span style="line-height: 13px;">Almost no graphic or video means that the <strong>page loads super quickly. </strong></span></li>
<li>Whether you want to sign up or login, you do not need to click even once on some link. Both the forms are very much open and you can either fill up the registration form to sign up or fill up the login form to enter site.  This makes the process very very quick.</li>
<li>There is simply nothing else on the home page for you to discover. This will compel you to sign up on facebook to discover what&#8217;s inside. Personally, I think this is a wonderful strategy and has probably helped facebook get more sign ups than any other website.</li>
</ol>
<h2>Gmail</h2>
<p>Now let&#8217;s take a look at gmail</p>
<p style="text-align: center;"><a href="http://webinstitute.in/wp-content/uploads/2013/05/accounts.google.com-2013-5-14-20-45-50.png"><img class="aligncenter  wp-image-4266" alt="accounts.google.com 2013-5-14 20-45-50" src="http://webinstitute.in/wp-content/uploads/2013/05/accounts.google.com-2013-5-14-20-45-50-1024x530.png" width="600" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: left;">Some points which immediately come to mind are as follows:</p>
<ol>
<li><span style="line-height: 13px;">The overall page design in terms of structure is <strong>very similar to that of facebook</strong>. </span></li>
<li><span style="line-height: 13px;">You need to look for 3 seconds to find out how to sign up.</span></li>
<li>You need to click at least once in order to sign up.</li>
<li>There are a couple of distractions on the left which serve little purpose on a desktop computer.</li>
<li>If you click on any of these distractions (ie the Android Play Store link or the App Store Link), it is difficult for you to come back to this page.</li>
<li>The sign up form is also pretty lengthy. Ideally, it should be divided into 2 pages.</li>
</ol>
<h2>Twitter</h2>
<p>Now here&#8217;s the home page of twitter. For all practical purposes, it is similar to facebook with an even easier signing up process.</p>
<p style="text-align: center;"><a href="http://webinstitute.in/wp-content/uploads/2013/05/twitter.com-2013-5-14-22-12-13.png"><img class="aligncenter  wp-image-4267" alt="twitter.com 2013-5-14 22-12-13" src="http://webinstitute.in/wp-content/uploads/2013/05/twitter.com-2013-5-14-22-12-13-1024x458.png" width="600" /></a></p>
<h2 style="text-align: left;">Outlook and Quora</h2>
<p style="text-align: center;">Now I do not wish to repeat myself, but if you&#8217;ll take a look at outlook.com and quora.com, you will find the same design pattern here:<a href="http://webinstitute.in/wp-content/uploads/2013/05/login.live_.com-2013-5-14-22-16-20.png"><img class="aligncenter  wp-image-4268" alt="login.live.com 2013-5-14 22-16-20" src="http://webinstitute.in/wp-content/uploads/2013/05/login.live_.com-2013-5-14-22-16-20-1024x472.png" width="600" /></a></p>
<p><a href="http://webinstitute.in/wp-content/uploads/2013/05/quora.com-2013-5-14-22-31-33.png"><img class="aligncenter size-large wp-image-4269" alt="quora.com 2013-5-14 22-31-33" src="http://webinstitute.in/wp-content/uploads/2013/05/quora.com-2013-5-14-22-31-33-1024x434.png" width="600" /></a></p>
<p>From these observations, it becomes very clear that all the top sites which are offering any sort of profile management or related activities to users, want them to sign up at the home page itself in as little time as possible. Now one might argue that all the above sites are well established players which is why they don&#8217;t have to explain themselves a lot. Since almost everyone already knows about them, they can get away with not highlighting what they are about very explicitly! That observation may well be correct as we do have another category of websites. These are sites which allow you to explore a lot of content without signing up but when you want to explore, say, some extra features, you may be required to register. Primarily, you may be allowed to consume some limited content but when it comes to actually creating any type of content, you will be required to sign up. Perfect example is stackoverflow.com The content is 100% free to consume but if you want to create content (such as asking or answering questions), you will need to first sign up before you are able to do that.</p>
<h2>Stackoverflow</h2>
<p>&nbsp;</p>
<p>Take a look at the home page of stackoverflow:</p>
<p><a href="http://webinstitute.in/wp-content/uploads/2013/05/stackoverflow.com-2013-5-14-22-38-14.png"><img class="aligncenter size-large wp-image-4271" alt="stackoverflow.com 2013-5-14 22-38-14" src="http://webinstitute.in/wp-content/uploads/2013/05/stackoverflow.com-2013-5-14-22-38-14-1024x458.png" width="600px" /></a></p>
<p>Now here are even more observations:</p>
<ol>
<li><span style="line-height: 13px;">Even though websites like twitter or facebook do not show anything on their homepage, a lot of their content can still be accessed without actually signing up. This helps in the search engine optimization of the website also.</span></li>
<li>If signing up users is not your primary mission, you can first show users what your site has to offer and engage them immediately.</li>
<li>Stress should be laid on signing up when you are going to keep the user engaged in your site and your site is more interactive where the user himself is likely to use their keyboard a lot (and not just clicking on links). In most cases mentioned above, the sites which usually compel the user to sign up on the home page itself have some sort of activities for the user to do. For example: asking a question, doing status updates or sending emails.</li>
<li> It will be silly to ask your users to sign up if you do not require the user to use their keyboard a lot. For example, if we talk about ebay, you must show your consumer what you have to offer. Otherwise, it will be difficult to sign him up.</li>
</ol>
<p>&nbsp;</p>
<p>To conclude, if you have a site which you feel is going to keep the user engaged, then by all means you should focus on signing them up first of all and keep things as clean and minimal as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://webinstitute.in/home-page-design-strategies-of-popular-user-generated-content-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web RTC: New Possibilities</title>
		<link>http://webinstitute.in/web-rtc-new-possibilities/</link>
		<comments>http://webinstitute.in/web-rtc-new-possibilities/#comments</comments>
		<pubDate>Fri, 03 May 2013 17:08:09 +0000</pubDate>
		<dc:creator>Siddharth Goyal</dc:creator>
				<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[web RTC]]></category>

		<guid isPermaLink="false">http://webinstitute.in/?p=4238</guid>
		<description><![CDATA[Web RTC is a new thing which is being introduced in HTML 5. While we are still in extremely nascent stages, a couple of companies have created some nice startups around the technology. So what exactly is Web RTC? Web RTC stands for Web Real Time Communications. In simple language, it is the system which [...]]]></description>
				<content:encoded><![CDATA[<p>Web RTC is a new thing which is being introduced in HTML 5. While we are still in extremely nascent stages, a couple of companies have created some nice startups around the technology.</p>
<p>So what exactly is Web RTC?</p>
<p>Web RTC stands for Web Real Time Communications. In simple language, it is the system which will in very near future (read this year itself) allow you to create HTML 5 based video chatting and screen sharing systems of your own.<br />
While it is still possible to do that with some effort, as of now, it really wont be easy to make it your bitch for the time being although some people have done some great work. Some of the things which will be possible to do using Web RTC are as follows:</p>
<ol>
<li><span style="line-height: 13px;">Screen Sharing on LAN networks.</span></li>
<li>Video chatting integrated within your website.</li>
<li>Private Video Conferencing without using 3rd party tools.</li>
<li>When mobiles start supporting this, you will be able to build your own skype.</li>
</ol>
<p>We are currently experimenting and trying to develop some awesome shit in Web RTC and if you want to join us in creating some innovative products, please do write to us at<a href="mailto:info@webinstitute.in"> info@webinstitute.in</a></p>
<p>Our basic tutorial on webRTC will come within 2 weeks time.</p>
]]></content:encoded>
			<wfw:commentRss>http://webinstitute.in/web-rtc-new-possibilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to do Parallax Scrolling (Explained in less than 10 minutes)</title>
		<link>http://webinstitute.in/how-to-do-parallax-scrolling-explained-in-less-than-10-minutes/</link>
		<comments>http://webinstitute.in/how-to-do-parallax-scrolling-explained-in-less-than-10-minutes/#comments</comments>
		<pubDate>Thu, 02 May 2013 14:40:55 +0000</pubDate>
		<dc:creator>Siddharth Goyal</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[UI and UX]]></category>
		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://webinstitute.in/?p=4235</guid>
		<description><![CDATA[This one was requested by Sahil Dua. Parallax Scrolling is very popular these days though it can be argued the popularity is on the wane now. In the following video, I will analyze the code of an open source tool called skrollr. It is ridiculously simple to use and after watching this video, you will [...]]]></description>
				<content:encoded><![CDATA[<p>This one was requested by Sahil Dua.<br />
Parallax Scrolling is very popular these days though it can be argued the popularity is on the wane now. In the following video, I will analyze the code of an open source tool called <a href="http://prinzhorn.github.io/skrollr/">skrollr</a>. It is ridiculously simple to use and after watching this video, you will have no problems creating parallax scrolling web pages.  </p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/oYPjf9i2hqg?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://webinstitute.in/how-to-do-parallax-scrolling-explained-in-less-than-10-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eCommerce for Students</title>
		<link>http://webinstitute.in/ecommerce-for-students/</link>
		<comments>http://webinstitute.in/ecommerce-for-students/#comments</comments>
		<pubDate>Wed, 01 May 2013 08:58:20 +0000</pubDate>
		<dc:creator>Siddharth Goyal</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://webinstitute.in/?p=4217</guid>
		<description><![CDATA[eCommerce is the new fad, and it&#8217;s going to continue growing. Look at the success of Flipkart, Myntra et al. The trend of eCommerce is going to last for the foreseeable future, so take advantage of it while you can. The main idea behind eCommerce is establishing a supply-chain, wherein, you buy things from wholesalers [...]]]></description>
				<content:encoded><![CDATA[<p><iframe width="500" height="375" src="http://www.youtube.com/embed/GDq3oC3gyrk?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>eCommerce is the new fad, and it&#8217;s going to continue growing. Look at the success of Flipkart, Myntra et al. The trend of eCommerce is going to last for the foreseeable future, so take advantage of it while you can. The main idea behind eCommerce is establishing a supply-chain, wherein, you buy things from wholesalers or vendors, and you sell them ahead to the customers. Some people would call you the middleman, but I would call you a facilitator.</p>
<p>Some stores also give an option to customize the items that they sell, and that can also be used as the USP of your portal. These are signs of evolution of the market. People want more options now, and they will flock to whoever provides them with those options.</p>
<p>Here are a few innovative eCommerce based ventures.</p>
<ul>
<li>Sell T-Shirts Online: There is this guy in NSIT Delhi. I don&#8217;t know his name personally but he has created a website that sells custom T-Shirts. (I believe it’s called TSort but I could be wrong). And I have heard he’s doing really well. He chose a niche, which was his own college and now he’s expanding. You can start a similar venture yourself. All you need to do is find a vendor who prints T-Shirts.</li>
<li>You can also start an online food venture. I got this idea from a guy in Tamil Nadu and thought it was really great. Basically, he’s going to target non professional cooks who are really awesome at creating some particular dish and then selling it online. You can start by selling stuff online by people you know. Ask a few housewives in your neighbourhood.</li>
<li>Online bookstore for semester books is always an ever green idea to work on. But it needs to be done well. You can be a great player throughout India also if you do your job properly. This one is open market, meaning the idea is there, but no noticeable implementation. So, grab the opportunity with both hands and run with it!</li>
</ul>
<p>Finally, an eCommerce site is for selling anything. You only need to decide what you want to sell, and then harness the power of the web to sell it.<br />
<iframe style="border: 0px;" src="http://www.meraevents.com/pricingtab?EventId=25452&amp;Twidzet=Yes&amp;AX=Yes" height="600" width="100%"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://webinstitute.in/ecommerce-for-students/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development Training Program in Andhra Pradesh</title>
		<link>http://webinstitute.in/web-development-training-program-in-andhra-pradesh/</link>
		<comments>http://webinstitute.in/web-development-training-program-in-andhra-pradesh/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 09:45:10 +0000</pubDate>
		<dc:creator>Siddharth Goyal</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://webinstitute.in/?p=4224</guid>
		<description><![CDATA[Webinstitute.in is happy to inform you that we will be conducting our first 7 day web development program in Vizag.This is a complete course for anyone who wishes to learn web development as well as mobile web development. Course Duration: May 30 to June 6, 2013 (with breaks during weekends) Class Duration: 6 Hours Long [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.dulcetsolutions.com/register-for-the-workshop/#regbutton"><img alt="vizag" src="http://www.dulcetsolutions.com/wp-content/uploads/2012/01/vizag-1024x527.jpg" width="550" height="283" /></a><br />
Webinstitute.in is happy to inform you that we will be conducting our first 7 day web development program in Vizag.This is a complete course for anyone who wishes to learn web development as well as mobile web development.<br />
<strong>Course Duration</strong>: May 30 to June 6, 2013 (with breaks during weekends)<br />
<strong>Class Duration</strong>: 6 Hours Long Classes from 10:30am onwards.<br />
<strong>Contact</strong>: +91-9818666217<br />
<strong>Fee</strong>: Rs 3500/- (if you have your own laptop). Rs 3600 with credit card or internet banking.<br />
<strong>Total duration</strong>: 42 hours.</p>
<p>&nbsp;</p>
<h1><strong>Who is this course meant for?</strong></h1>
<p>This course is for anyone who wants to build a strong career in open source web industry and wants to get placed in a good company. The course modules have been designed keeping in mind the most in demand industry requirements. In addition, 1 module related to soft skills has also been made a part of the program so that this course now gives you the maximum benefit. No prior programming background is necessary to attend this course!<br />
This course is for serious people who wish to bag a great job in the web industry or start their own web enabled business.<br />
<strong><br />
</strong></p>
<h1><strong>Teaching Methodology</strong></h1>
<p>We give little to no notes and we talk very little during classes. Most of the times, you will be busy building something on your computer in the classroom. Either solving a problem or doing an assignment. The following videos might give you some idea about how things go typically in our workshops.</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/Dy-_SRciQbU?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/xuRX9-5QMlA?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<h1><strong>How to register?</strong></h1>
<p>All payments need to be made in advance. You have several options to make these payments.<br />
You can pay online (see red link below) or make cash payment. Call 868668698 (Eswar Naidu)</p>
<h1>Syllabus to be Covered</h1>
<p>We did a good amount of research and revised our syllabus to make it more relevant keeping in mind the industrial demands as reflected on various job sites. The best topics have been included for maximum benefit. The focus of the classroom is getting the participants a great job!</p>
<p>&nbsp;</p>
<table width="642" border="1" cellspacing="0" cellpadding="0" align="left">
<tbody>
<tr>
<td valign="top" width="239"><b>Day</b></td>
<td valign="top" width="404"><b>Topic</b></td>
</tr>
<tr>
<td valign="top" width="239"><b>1</b><b> </b></td>
<td valign="top" width="404">
<ul>
<li>HTML and CSS
<ul>
<li>Basic Tags</li>
<li>CSS3  properties</li>
<li>CSS Continued</li>
<li>Basic Layout creation using HTML and CSS</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>1</b></td>
<td valign="top" width="404">
<ul>
<li>jQuery basics</li>
<li>Javascript Basics</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>2</b><b> </b></td>
<td valign="top" width="404">
<ul>
<li>HTML 5 Basics
<ul>
<li>Semantic tags</li>
<li>Audio and Video</li>
<li>HTML 5 Basics
<ul>
<li>Localstorage</li>
</ul>
</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>2</b></td>
<td valign="top" width="404">
<ul>
<li>PHP Basics
<ul>
<li>Basic commands</li>
<li>Variables</li>
<li>Loops</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>2</b></td>
<td valign="top" width="404">
<ul>
<li>PHP Continued
<ul>
<li>Functions in PHP</li>
<li>Database Basics</li>
<li>SQL syntaxes</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>3</b></td>
<td valign="top" width="404">
<ul>
<li>Introduction to MySQL
<ul>
<li>PHP and MySQL</li>
<li>CRUD operations</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>3</b></td>
<td valign="top" width="404">
<ul>
<li>Basics of WordPress CMS
<ul>
<li>Making Pages and Posts</li>
<li>Installing Plugins</li>
<li>Installing and changing themes</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>4</b></td>
<td valign="top" width="404">
<ul>
<li>WordPress Cont.
<ul>
<li>Theme Development</li>
<li>Basic Functions in WordPress</li>
<li>Widgetizing Areas</li>
<li>Meta tags</li>
<li>Custom content type</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>5</b></td>
<td valign="top" width="404">
<ul>
<li>jQuery Mobile
<ul>
<li>Building a Mobile Web App</li>
<li>Creating an Android Application using HTML 5</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>6</b></td>
<td valign="top" width="404">
<ul>
<li>Object Oriented PHP</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>6</b></td>
<td valign="top" width="404">
<ul>
<li>Basics of Codeigniter PHP framework</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="239"><b>6,7</b></td>
<td valign="top" width="404">
<ul>
<li>Bagging internships and jobs. Resume tips, interview strategies and which companies to target.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table width="642" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="239"></td>
<td valign="top" width="404"></td>
</tr>
</tbody>
</table>
<h1><strong> </strong></h1>
<p>&nbsp;</p>
<p>Questions or Doubts? Leave them in the comments section.<br />
You can register for the webinstitute.in program online or pay by cash or check. The registration fee is Rs 3600/- (if paid through credit card).</p>
<a href='http://www.dulcetsolutions.com/register-for-the-workshop#regbutton' class='big-button bigblue' target="_blank"><span>Click to Register</span></a>
<p>In case, you do not wish to pay online, you can transfer the amount Rs 3500 directly in our bank account,</p>
<div style="border: 1px dashed black; padding: 5px; width: 300px; margin: 10px;">
<p>Account Name: Dulcet Solutions Pvt LtdAccount Number: 05782020024247</p>
<p>RTGS/NEFT/IFSC: HDFC0000578</p>
<p>Bank: HDFC</p>
<p>Address: 3, NRI Complex, Mandakini, GK-IV,</p>
<p>Alaknanda, New Delhi-110019</p>
</div>
<p>and after transfering, please call +91-9818666217 or email me to confirm the same.</p>
]]></content:encoded>
			<wfw:commentRss>http://webinstitute.in/web-development-training-program-in-andhra-pradesh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
