Wednesday, 20 November 2013

PHP MYSQL Login and Registration using Functions

// siddhu vydyabhushana // 140 comments
Today am going to explain you the code for Login and Registration using functions in php,mysql . The best methodology in any language is using Object Oriented Principles.Dealing with classes, objects very easy to manipulate information. Below code for how to develop user registration and login  form in php. This tutorial contain only 2 files  functions.php and login_reg.php Database simple database with 4 fields id,...
Read More

Saturday, 12 October 2013

Blogger SEO Search Preferences

// siddhu vydyabhushana // 28 comments
Blogger SEO Search Preferences Most of the bloggers are getting confused to setup the Search Preferences of the blog.So today i take part to show how to optimize SEO Search Preferences of blog to get high traffic .Actually there are too many parameters like Meta Tags , Errors and Re directions and Crawlers and Indexing Meta Tag Description: you will find Description text-box in the window, to enable follow the below picture.The...
Read More

SEO Effect on Title,Header,Meta Tags

// siddhu vydyabhushana // 169 comments
Blogger is the one of the most popular CMS (Content Management System) which used by millions of people.So Goggle provided WEBMASTER TOOLS to which analyze our blog rankings,page views and bounce rate.In internet soo many templates are there to give look to your blog,some templates already SEO optimized some may not,by modifying the blogger template we can change our template to seo friendly.  Display post title first...
Read More

Thursday, 10 October 2013

Infosys aspration 2020 2013 college round question-4

// siddhu vydyabhushana // 12 comments
  Translator In a country of Neverland there are two types of programmers, People who program using a language X(X people) and people who program using a language Y(Y people). Both are equally good languages but there is no translator that could translate X language to Y and vice versa.Apologists of X and Y can argue for hours proving each other that their programming language is the best one.Y people will tell that...
Read More

Infosys aspiration 2020 2013 college round question-3

// siddhu vydyabhushana // 114 comments
Pythagorean Math Test Pythagoras is teaching mathematics to a class of N students. He wants to test if his students understood his new theorem. He gives his students the length of the sides of a triangle and they have to tell him if it is a right triangle. Input First line an integer N, the number of students. 0<N<=50 Next N lines each containing 3 integers a, b and c which are the length of the sides...
Read More

Monday, 7 October 2013

Infosys Aspiration 2020 2013 college round question-2

// siddhu vydyabhushana // 196 comments
Rahul has M friends and they love to play games with marbles. His little sister also wants to join his gang of marble game lovers. To make it simple for his little sister Rahul creates a simple rule for the marble game of the day. Each participant will be given a set of marbles. The participant is considered to win the game if they are able to pair up all the marbles they have; else they are said to lose. Rahul being a coding freak...
Read More

Infosys Aspiration 2020 2013 college round question-1

// siddhu vydyabhushana // 13 comments
Alice and Bob are being held at Azkaban(Prison). They want to escape and join Dumbledore's Army. Alice wants to tell Bob about the details of the plan but wants to keep their escape plan from Dementors(the guards). So Alice encrypts the message before passing the chits to Bob's cell. However Bob was careless and he disposed the chits in his cell's waste paper bin. The clever Dementor found the chits but couldn't make...
Read More

Thursday, 3 October 2013

Data Sharing between Android Applications

// siddhu vydyabhushana // 6 comments
In this tutorial I'm going to illustrate how we can share data between two Android applications using Shared Preference. To implement this I used two Android applications. One is "Datawriter" and the other one is "Datareader". "Datawriter" is to update shared data. Its' package name is com.writer.data class name is DataWriterActivity . Here is the code for DataWriterActivity class. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 package...
Read More

Load Image from URL in Android

// siddhu vydyabhushana // 10 comments
Once I needed to display an image loading from URL in my Android application. After referring some resources I was success. Here I post what I did. This is for future references. I did this for Android 2.2 platform. This Android application load an image from a server using HttpURLConnection and show it in image view when you click load image button. (I have used  image located here http://www.codeincloud.tk/play.png)...
Read More