Want to start streaming videos? What about free space at Dropbox. Lets use it. Here is a quick guide which can help you achieve this:

1. Host/Save your Video over the Dropbox in the Public Folder

2. Get the public link

3. If you are using WordPress or any other CMS, simply use the Media file manager to add the file.

Here you go, how dropbox can help you do FREE Streaming of Videos icon smile Let Start Streaming Videos via Dropbox

 

General

Easy Columns provides the shortcodes to create a grid system or magazine style columns for laying out your pages just the way you need them.

Using shortcodes for 1/4, 1/2, 1/3, 2/3, 3/4, 1/5, 2/5, 3/5 and 4/5 columns, you can insert at least thirty unique variations of columns on any page or post.

Quickly add columns to your pages from the editor with an easy to use “pick n’ click” interface!

To download the plugin, Visit Here

Wordpress

A CSS3 generator which will help you design and learn how to make CSS3 Buttons. By using this generator it will save you time and effort in creating that perfect CSS button for your site.

1. CSS Portal Button Generator

2. CSS3 Button Generator

3. CSS Button Generator

css css3

Trying to enhance your blog commenting experience? OR trying to save your time for developing a rich commenting system. Now its simple by using the WordPress plugin. Two of the very feature rich commenting systems:

Intense Debate: IntenseDebate Comments enhance and encourage conversation on your blog or website. Custom integration with your WordPress admin panel makes moderation a piece of cake. Comment threading, reply-by-email, user accounts and reputations, comment voting, along with Twitter and friendfeed integrations enrich your readers’ experience and make more of the internet aware of your blog and comments which drives traffic to you!

Visit: Intense Debate

Disqus: Disqus, pronounced “discuss”, is a service and tool for web comments and discussions. Disqus makes commenting easier and more interactive, while connecting websites and commenters across a thriving discussion community.

Visit: Disqus

Wordpress

Munin is a networked resource monitoring tool that can help analyze resource trends and “what just happened to kill our performance?” problems. It is designed to be very plug and play. A default installation provides a lot of graphs with almost no work.

Visit: Munin

Application Tools

Well before we proceed learning php, i want you to install SERVER at your PCs. So that you can test the code locally every time you learn something new.

What is Web Server?

A web server is a computer program that delivers (serves) content, such as web pages, using the Hypertext Transfer Protocol (HTTP), over the World Wide Web. The term web server can also refer to the computer or virtual machine running the program. In large commercial deployments, a server computer running a web server can be rack-mounted with other servers to operate a web farm.

The Web server that we will be using is WAMP, Installation demonstration can easily be learn and done by seeing the video.

Steps before Installation:

Before you proceed to see installation video, it is essential that you download the following WAMP Server File.

Download WAMP

PHP

What is PHP?

PHP: Hypertext Preprocessor is a widely used, general-purpose scripting language that was originally designed for web development to produce dynamic web pages. For this purpose, PHP code is embedded into the HTML source document and interpreted by a web server with a PHP processor module, which generates the web page document. As a general-purpose programming language, PHP code is processed by an interpreter application in command-line mode performing desired operating system operations and producing program output on its standard output channel. It may also function as a graphical application. PHP is available as a processor for most modern web servers and as standalone interpreter on most operating systems and computing platforms.

Why PHP?

  • PHP is Open Source
  • PHP runs on different platforms like Windows, Linux, Unix, etc (Platform Independent Language)
  • PHP is compatible with almost all servers used today (Apache, IIS, etc.)
  • PHP takes the concept of C and brings them into web surface
  • Why PHP is important to Know ?

Gradually as we can see there is an increase in technology and its usage and if we look around our world we see that there is a drastic change from what we were around 5 – 10 years to now. Almost everyday most of us are habitual of visiting Social Networks like Facebook, Twitter etc for different reasons. If we see these platforms, as a technologist, this thought must come in your mind on which platforms, languages these systems are made?

The Answer is simply : PHP – All the above mentioned systems are based on php language utilizing it in one way or the other.

What should you know ?

Before you start programming using PHP. It is important that you should be aware of the following concepts:

  • HTML / XHTML
  • Web Server
  • C Language – Would be an additional benefit
  • Example of PHP Based Systems

I would recommend everyone to please look at the example system, these systems are all based on PHP Like Facebook, WordPress etc.

PHP

At the start of my career i tried to put up some videos for helping people learn PHP. Today i thought to bring them live for all of my ideal lab readers.

The tutorial includes:

Level 1 : Basics of PHP
Task 1 : PHP Introduction
Task 2 : WAMP Installation
Task 3 : PHP Syntax
Task 4 : PHP Variables
Task 5 : PHP Strings
Task 6 : PHP Operators
Task 7 : PHP Expressions

Level 2 : Flow Control
Task 1 : PHP Conditions
Task 2 : PHP Loops
Task 3 : PHP Arrays

Level 3 : Functions
Task 1 : Intoductions to Function
Task 2 : Writing your own Function

Level 4 : PHP Forms
Task 1 : PHP Forms
Task 2 : PHP $_GET
Task 3 : PHP $_POST

 

PHP

Few days back we had a requirement on how to detect iPhone and iPad so that we can divert the traffic to a different location. Here is a quick SERVER side code in PHP which can achieve this:

<?php
$isiPad = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPad');
$isiPhone = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPhone');
if($isiPad == true || $isiPhone == true) {
	echo "Ipad - Iphone";
}
?>

You can test out the code by visiting: Link on your iPad or iPhone

Experiments Iphone PHP
string uniqid ([ string $prefix = "" [, bool $more_entropy = false ]] )

Generate a unique ID, this  is available in version 4 and 5 of PHP.

Example Code from Reference Site:

<?php

/* A uniqid, like: 4b3403665fea6 */
printf("uniqid(): %s\r\n", uniqid());

/* We can also prefix the uniqid, this the same as
 * doing:
 *
 * $uniqid = $prefix . uniqid();
 * $uniqid = uniqid($prefix);
 */
printf("uniqid('php_'): %s\r\n", uniqid('php_'));

/* We can also activate the more_entropy parameter,
 * which is required on some systems, like Cygwin.
 * This makes uniqid()produce a value
 * like: 4b340550242239.64159797
 */
printf("uniqid('', true): %s\r\n", uniqid('', true));
?>

To read more about it visit Reference PHP Site

PHP