PHP – First Code!

Posted: October 8, 2013 in General

First page – Login.php

<html>
<head><title>Login page</title>
</head>
<body>
 <h2>Login page</h2>
 <form name="loginform" action="second.php" method="post">
 <table>
 <tr><td><pre>
 <b>Username : <input type="text" name="un">
 Password : <input type="password" name="pw"><br><br></b>
 <input type="submit" value="Login"> <input type="reset" value="Reset">
 </tr></td></pre>
 </table>
 </form>
</body>
</html>

Second page - Second.php

<html>
<head>
<title>Second page</title><head>
<body>
<?php
 $name=$_POST["un"];
 echo "Welcome ".$name;
?>
</body>
</html>
 

A Teen’s Right- TEE SHIRT!

Posted: October 6, 2013 in General

tshirts

About T-shirt!

T-shirts, as a slip-on garment without buttons, originally became popular in the United States when they were issued by the U.S. Navy during or following the Spanish American War. These were a crew-necked, short-sleeved, white cotton undershirt to be worn under a uniform. It became common for sailors and Marines in work parties, the early submarines, and tropical climates to remove their uniform “jacket”, wearing (and soiling) only the undershirt.

Named the T-shirt due to the shape of the garment’s outline, it soon became popular as a bottom layer of clothing for workers in various industries, including agriculture. The T-shirt was easily fitted, easily cleaned, and inexpensive, and for this reason it became the shirt of choice for young boys. Boys’ shirts were made in various colors and patterns. By the Great Depression, the T-shirt was often the default garment to be worn when doing farm or ranch chores, as well as other times when modesty called for a torso covering but conditions called for lightweight fabrics.Named the T-shirt due to the shape of the garment’s outline, it soon became

cool_tshirt

T-shirt fashions include many styles for both men and women, and for all age groups, including baby, youth, teen, adult and elderly sizes.The T-shirt evolved from undergarments used in the 19th century, through cutting the one-piece “union suit” underwear into separate top and bottom garments, with the top long enough to tuck under the waistband of the bottoms. T-shirts, with and without buttons, were adopted by miners and stevedores during the late 19th century as a convenient covering for hot environments.

Trends In T-shirt

T-shirts were originally worn as undershirts. Now T-shirts are worn frequently as the only piece of clothing on the top half of the body, other than possibly a bra or an undershirt (vest). T-shirts have also become a medium for self-expression and advertising, with any imaginable combination of words, art and photographs on display.

A T-shirt typically extends to the waist. Variants of the T-shirt, like the tank topcrew neck,A-shirt (with the nickname “wife beater“), muscle shirtscoop neck, and V-neck have been developed. Hip hop fashion calls for “tall-T” T-shirts which may extend down to the knees. A 1990s trend in women’s clothing involved tight-fitting “cropped” T-shirts short enough to reveal the midriff. Another popular trend is wearing a short-sleeved T-shirt of a contrasting color over a long-sleeved T-shirt. This is known as “layering”. T-shirts that are tight to the body are called fitted, tailored or “baby doll” t-shirts.

T-shirt – a cool outfit to hangout with!

Quest 4 an Identity – BRANDING!

Posted: October 6, 2013 in General

WhatIsBranding

What is Branding & how important is it to your marketing strategy?

BRANDING is a “name, term, sign, symbol or design, or a combination of them intended to identify the goods and services of one seller or group of sellers and to differentiate them from those of other sellers.

Therefore it makes sense to understand that branding is not about getting your target market to choose you over the competition, but it is about getting your prospects to see you as the only one that provides a solution to their problem.

The objectives that a good brand will achieve include:  Branding

  • Delivers the message clearly
  • Confirms your credibility
  • Connects your target prospects emotionally
  • Motivates the buyer
  • Concretes User Loyalty

Understanding BRANDING :

To understand branding, it is important to know what brands are. A brand is the idea or image of a specific product or service that consumers connect with, by identifying the name, logo, slogan, or design of the company who owns the idea or image. Branding is when that idea or image is marketed so that it is recognizable by more and more people, and identified with a certain service or product when there are many other companies offering the same service or product. Advertising professionals work on branding not only to build brand recognition, but also to build good reputations and a set of standards to which the company should strive to maintain or surpass. Branding is an important part of Internet commerce, as branding allows companies to build their reputations as well as expand beyond the original product and service, and add to the revenue generated by the original brand.

When working on branding, or building a brand, companies that are using web pages and search engine optimization have a few details to work out before being able to build a successful brand. Coordinating domain names and brand names are an important part of finding and keeping visitors and clients, as well as branding a new company. Coordination of a domain name and brand names lends identification to the idea or image of a specific product or service, which in turn lets visitors easily discovery the new brand.

Branding is also a way to build an important company asset, which is a good reputation. Whether a company has no reputation, or a less than stellar reputation, branding can help change that. Branding can build an expectation about the company services or products, and can encourage the company to maintain that expectation, or exceed them, bringing better products and services to the market place.

To Succeed in BRANDING :

customers and prospects. You do this by integrating your brand strategies through your company at every point of public contact.To succeed in branding you must understand the needs and wants of your customers and prospects.
Gold Brand

Your brand resides within the hearts and minds of customers, clients, and prospects. It is the sum total of their experiences and perceptions, some of which you can influence, and some that you cannot.

A strong brand is invaluable as the battle for customers intensifies day by day. It’s important to spend time investing in researching, defining, and building your brand. After all your brand is the source of a promise to your consumer. It’s a foundational piece in your marketing communication and one you do not want to be without.

Source : http://marketing.about.com/cs/brandmktg/a/whatisbranding.htm

php

About PHP – Personal Home Page!

PHP is a server-side scripting language designed for web development but also used as ageneral-purpose programming language.Originally created by Rasmus Lerdorf in 1995, thereference implementation of PHP is now produced by The PHP Group.php

PHP code is interpreted by a web server with a PHP processor module, which generates the resulting web page: PHP commands can be embedded directly into an HTML source document rather than calling an external file to process data. It has also evolved to include a command-line interface capability and can be used in standalone graphical applications.

PHP  was Personal Home Page
PHP  is Hypertext Preprocessor

Synatx of PHP!

The following Hello world program is written in PHP code embedded in an HTML document:php

<!DOCTYPE html>

<meta charset=”utf-8″>

<title>PHP Test</title>

<?php echo ‘Hello World;’ ?>

However as PHP does not need to be embedded in HTML, or used with a web server, the simplest version of a Hello World program can be written like this:

<?= ‘Hello World’;

The PHP interpreter only executes PHP code within its delimiters. Anything outside its delimiters is not processed by PHP (although non-PHP text is still subject to control structures described in PHP code) . The most common delimiters are <?php to open and ?> to close PHP sections.

Data Types :

PHP stores whole numbers in a platform-dependent range, either a 64-bit or php32-bit signed integer equivalent to the C-language long type. Unsigned integers are converted to signed values in certain situations; this behavior is different from other programming languages. Integer variables can be assigned using decimal (positive and negative), octalhexadecimal, and binary notations.Floating point numbers are also stored in a platform-specific range. They can be specified using floating point notation, or two forms ofscientific notation. PHP has a native Boolean type that is similar to the native Boolean types in Java and C++. Using the Boolean type conversion rules, non-zero values are interpreted as true and zero as false, as in Perl and C++. The null data type represents a variable that has no value. The only value in the null data type is NULL.

Objects :

Basic object-oriented programming functionality was added in PHP 3 and improved in PHP 4. Object handling was completely rewritten for PHP 5, expanding the feature set and enhancing performance. In previous versions of PHP, objects were handled likevalue types. The drawback of this method was that the whole object was copied when a variable was assigned or passed as a parameter to a method. In the new approach, objects are referenced by handle, and not by value. PHP 5 introduced private and protected member variables and methods, along with abstract classesfinal classesabstract methods, and final methods. It also introduced a standard way of declaring constructors and destructors, similar to that of other object-oriented languages such as C++, and a standard exception handling model. Furthermore, PHP 5 added interfaces and allowed for multiple interfaces to be implemented. There are special interfaces that allow objects to interact with the runtime system. Objects implementing ArrayAccess can be used with array syntax and objects implementing Iterator or IteratorAggregate can be used with the foreach language construct. There is no virtual table feature in the engine, so static variables are bound with a name instead of a reference at compile time.

Mr.Wallet!!!

Posted: October 2, 2013 in General

Wallet

Knowing your WALLET!

A wallet, is a small,case that is used to carry personal items such ascash, credit cards, identification documents (driver’s license, identification card, club card, etc.), photographs, gift cards, business cards and other paper or laminated cards. Wallets are generally made of leather or fabrics, and they are usually pocket-sized but not always foldable.

WALLET – A place not just for currency but for your MEMORIES as well!

Wallets are basically noted as very useful accessories. If you want to gift My Walletsomething to your boyfriend, go for something like this. This particular accessory is basically important both for men and women.

People not only use wallets to carry currency but also use them for carrying photographs of their dear one’s, as they can look at them and cherish their memories when they are away from them.

Frankly speaking, a person is incomplete without this special accessory. This special accomplice basically helps you keep your credit cards, money as well as other valuables also.

Check out some of the finest facts about wallet:- 
  • It helps you store or keep your valuables.
  • Your valuables remain safe and secured.
  • It is becoming more useful to men’s ever-changing needs.
  • It fits best in your pocket and in hands of women.
  • Check out the material before taking your final decision.
  • Those made of genuine leather are known for their durability.
  • Wallets made by Polo are considered as the best because of their green and black plaid design. Boys just love using such designer accessories.
 Now check out few disadvantages of using wallets:-
  • Sometimes wallets make boys look absurd because of an unappealing bump that it creates on the back pocket.
  • Sitting on it also creates problem that you can’t avoid. Boys actually prefer placing the wallet at the back of the pocket.
  • Wallets are also prone to wear and tear because of the type of materials used.

 The latest in the market are waterproof wallets. The best part of using accessories consist of waterproof feature is that you can use them while it is raining or having swimming. Two most popular wallets that are in great demand in the market are –                                My wallet

  • Dry Pak Alligator wallet and
  • Aquapac Mini Wanganui 

These two wallets are known in the market for their good quality, smart design, numerous features, and most importantly good quality material. If you are looking for something that you can use for beaches, go for Samsonite Waterproof Neck wallet. This particular brand provides wallets that deals with the best features as easily adjustable neck cord, presence of triple seal zip lock, can hold cameras, cell phones, money as well as credit cards. You can also go for another very popular brand i.e. Denko Pak Pak waterproof pouch.

The market price of such branded wallets ranges between US $15 TO US $30. The features are basically responsible for the high price. If you are thinking what to gift your boyfriend in his birthday or some special occasion of his life, wallet will be the perfect gift.

Engage yourself with WORDPRESS!

Posted: October 1, 2013 in General

Wordpress

Share your thoughts through WoRDPRESS :

WordPress is a free and open source blogging tool and a content-management Wordpresssystem(CMS) based on PHP and MySQL, which runs on a web hosting service. Features include a plug-in architecture and a template system. WordPress is used by more than 18.9% of the top 10 million websites as of August 2013. WordPress is the most popular blogging system in use on the Web, at more than 60 million websites.

It was first released on May 27, 2003, by its founders, Matt Mullenweg and Mike Little, as a fork of b2/cafelog. As of September 2013, version 3.6 had been downloaded more than 6 million times.

FEAUTERS of WORDPRESS

Themes

WordPress users may install and switch between themes. Themes allow users to change the look and functionality of a WordPress website or installation without altering the information content or structure of the site. Themes may be installed using the WordPress “Appearance” administration tool or theme folders may be uploaded via FTP. The PHP, HTML & CSS code found in themes can be added or edited for providing advanced features. Thousands of WordPress themes exist, some free, and some premium (paid for) templates.

Plugins

One very popular feature of WordPress is its plugin architecture which allows users and developers to extend its abilities beyond the core installation. WordPress has a database of over 26,000 plugins, each of which offers custom functions and features enabling users to tailor their sites to their specific needs. These customizations range SEO (Search Engine Optimization) enhancers to content displaying features, such as the addition of widgets and navigation bars.

Multi-user and multi-blogging

Prior to WordPress 3.0, WordPress supported one blog per installation, although multiple concurrent copies may be run from different directories if configured to use separate database tables. WordPress Multi-User (WordPress MU, or WPMU) was a fork of WordPress created to allow multiple blogs to exist within one installation but is able to be administered by a centralized maintainer. WordPress MU makes it possible for those with websites to host their own blogging communities, as well as control and moderate all the blogs from a single dashboard. WordPress MU adds eight new data tables for each blog.

As of the release of WordPress 3.0, WordPress MU has merged with WordPress.

Mobiles

Native applications exist for WebOS, Android, iOS (iPhone, iPod Touch, iPad), Windows Phone, and BlackBerry.These applications, designed by Automattic allow a limited set of options, which include adding new blog posts and pages, commenting, moderating comments, replying to comments in addition to the ability to view the stats.

Other features[edit]

WordPress also features integrated link management; a search engine–friendly, clean permalink structure; the ability to assign nested, multiple categories to articles; and support for tagging of posts and articles. Automatic filters are also included, providing standardized formatting and styling of text in articles (for example, converting regular quotes to smart quotes). WordPress also supports theTrackback and Pingback standards for displaying links to other sites that have themselves linked to a post or article.

ROCKSTAR all set to ROCK!

Posted: September 25, 2013 in General

Rockstar

Ranbir as ROCKSTAR.

Rockstar-potrait

Rockstar is a 2011 Indian musical romantic drama film directed by Imtiaz Ali, starringRanbir Kapoor and debutant Nargis Fakhri, with music composed by A. R. Rahman. The film also stars Shammi Kapoor, Moufid Aziz, Aditi Rao Hydari, Piyush Mishra, Shernaz Patel and Kumud Mishra, with the former making his last silver screen appearance. The film was produced by Eros International Ltd. along with Shree Ashtavinayak Cine Vision Ltd. It follows Janardhan Jakhar a.k.a. JJ and Jordan, who dreams of becoming a big rockstar. He undergoes an emotional change to do so and during the process, a love story follows with a girl named Heer, which takes him from India to Prague. Development of Rockstar commenced in May 2010. Nargis Fakhri was cast as the female lead, after plans to give the role to Kareena Kapoor were shelved. Filming in India took place atDelhi, Kashmir, Mumbai and Dharamsala, while the foreign sequences were shot inPrague and Liberec, Czech Republic.

Rockstar was released on 11 November 2011. On the day of release, Tibetans inChennai and Dharmasala protested against the Central Board of Film Certification for asking the film-makers to censor scenes featuring the Tibetan flag. Upon release, the film received positive to mixed reviews. Critics highlighted Kapoor and Rahman as the stars of the film, but panned the plot. The film did well at the box office and was declared a “Hit”, managing to appeal to the youngsters in the cities.

Was the ROCKSTAR able to Rock peoples heart?!? Lets find.

The film opens by showing a large crowd outside the Verona Arena, Italy, with eager fans queuing for the rock concert of Jordan (Ranbir Kapoor). Jordan, who was being attacked by thugs moments ago, manages to escape and reach the arena. He shows a complete disregard for his fans, storms onto the stage in a fit of rage and starts strumming his guitar.

A flashback shows the story of Jordan, when he was Janardhan Jhakar a.k.a. JJ, a simple Haryanvi Jat from, Delhi, a student in Hindu College who dreams of becoming a big star and gets laughed at by his friends for that. Khatana, a canteen owner (Kumud Mishra), tells him that the only way melody can be produced is by undergoing trauma via a heartbreak. Janardhan jokingly tells himself that since he hasn’t seen bad times, he hasn’t been able to reach his idol’s (Jim Morrison) level of fame. He goes to the performance of Heer Kaul (Nargis Fakhri), one of the girls in St. Stephens College, and overhears that she is the “perfect heartbreaking machine”. Instantly deciding to propose to her, he suffers humiliation, which he deciphers as the perfect method for receiving the “heart-break” and the key to “fame”. However, they both become good friends, hanging out together and doing things like drinking desi liquor and watching a B-grade Hindi film called “Junglee Jawaani”

Rockstar potrait

Heer marries Jai (Moufid Aziz) in Kashmir and departs to Prague with him. During the process, she develops feelings for JJ and coins the name “Jordan” for him before leaving. JJ returns home finds himself thrown out by his elder brother for attending Heer’s wedding and stealing INR500,000. He takes refuge for two months in the nearby Nizamuddin Dargah, singing qawwalis and finally to Khatana’s place, making it his home.

Ustad Jameel Khan (Shammi Kapoor), a Padma Bhushan classical artist, remembers JJ singing at the Dargah, and prompts Dhingra (Piyush Mishra), the owner of a music company called “Platinum Records”, to sign JJ as he foresees a bright future for him. When Sheena (Aditi Rao Hydari), a journalist interviewing Jordan as a rockstar, hints to Jordan that Dhingra intends to send some artists to Prague for a tour and recordings, he instantly volunteers to work there to reunite with Heer.

ROCKSAR indeed was successful in ROCKING the hearts of people all around.

DISSIDE

DISSIDE-Independent,Innovative & Inspiring!

Being on DISSIDE!

482014_385899311472859_1445578359_n

Hey people!

DIS is S.SAI SRINIVAS from DISSIDE.

I have been fortunate enough to get into the INTERNSHIP program here at DISSIDE. It is basically a company which deals with Web-Designing.

DISSIDE gives us a platform where we can dive deep into the shallows of  our CREATIVITY and discover the extent of our imaginations.Not just discovering our ability,it also facilitates us with all the necessary support to put life into our imagination.

DISSIDE redefined!

DISSIDE welcomes you into the world where

  • Dreams can be Dil-logical
  • Ideas can be Illustrious
  • Simplicity is Style
  • Sincerity is Salient
  • Ingeniousness  is Immeasurable
  • Diligent are Desirable
  • Efficient are Eligible

I personally feel that, being on DISSIDE is a great start to my professional life. No matter how learned you are, there are still innumerable things left to learn and DISSIDE consists of many such things.

DISSIDE helps you find the path of becoming Independent, gives you an opportunity to become Innovative and installs in you, the capability of Inspiring others.

So…which side are you on, people!?!?

Gudmorning people!

Posted: September 23, 2013 in Uncategorized
Tags: ,
FUEL

FUEL urself!

 

Hi.

this is Sri, n i am feeling awesome learning at DISSIDE!©

Never say “NEVER”!

Posted: September 22, 2013 in Uncategorized

Image