Posts

Step by step PHP video tutorials from start to finish: part-2

Previous Video                                       Next Video Hi friends, this is our second video tutorial on PHP. I hope you enjoyed our first PHP video tutorial. Today I will discuss some important think related with PHP web development with videos. In this PHP video tutorial you will learn How php echo and print function works.  How to embed PHP inside HTML code. PHP comments writing rules.  How to report error with PHP and  PHP variable, how to declare PHP variable, PHP variable naming convention Here is the link of our video tutorials. To watch or download each video tutorial just click skip add. PHP Video Tutorials: PHP echo function   PHP Video Tutorials: PHP print function   PHP Video Tutorials: Embedding PHP Inside HTML PHP Video Tutorials: PHP comments   PHP Video Tutorials: Reporting error in PHP   PHP Video Tutorials: PHP Variable ...

How to setup Eclipse and Android on Windows 7 - A Step-by-Step guide

Image
One of the most detailed step-by-step guide ever to setup Android with Eclipse Juno on Windows 7 and run your first Android Hello World Application Who is this guide for? This guide is for anyone (especially Non-JAVA people from MS world like me), looking for help to setup Android Development Environment on a Windows 7 box. This tutorial (pretty detailed) will help you installing all required software and run a simple Android Hello World project on Android 2.3.3 emulator. When I thought to learn Android (few weeks ago), being accustomed to .msi file double clicks for installation, found Android setup a little less easy. But if you go through this document carefully, setting up android development environment on Windows 7 will be a breeze. Requirements Windows 7 (32-bit or 64-bit) Internet What all this guide covers How to install JDK 7(JAVA Development Kit) How to install Eclipse Juno (Free IDE for JAVA like paid Visual Studio is there for .NET) How to install ADT Plugin (Android de...

Step by step PHP video tutorials from start to finish: part-1

PHP free video tutorials: Hello everyone, this is right place to learn PHP from video tutorials. We consolidate all tutorials from thenewboston and we arrange all PHP video tutorials with step by step manner. Though we have lot of written tutorials on PHP but we think that video tutorials are more effective than written tutorials. That's why we introduce PHP video tutorials only for you. So complete our all PHP video tutorials with step by step procedure. I think you will learn many thinks from our tutorials. To download or watch tutorials just click on skip add button. In this part we give some tutorials for beginners. So start your PHP learning with video tutorials from now. PHP Video Tutorials: Introduction to PHP   PHP Video Tutorials: Installing XAMPP Part 1   PHP Video Tutorials: Installing XAMPP Part 2   PHP Video Tutorials: Creating Your First PHP File   PHP Video Tutorials: Writing Your First PHP File   PHP Video Tutorials: The phpinfo Function Vide...

Step by step blog creation tutorials using PHP & MySQL: Part-2

Image
Today I will discuss Entity or Database analysis of a personal blog. I hope you will enjoy my tutoring. Before starting our tutorial at first read out our first PHP blog creation tutorial.  Step by step blog creation tutorials using PHP & MySQL: Part-1 In this day our discussion is about database analysis. So that we need to know what is database. I say that database is nothing but a storage house that store information with secured way. There are various types of database such as MySQL database, Oracle database, Microsoft SQL server etc. In our whole tutorial we user MySQL database. Because it is free and open source. So guys lets start with us We hope you will enjoy every tutorials from us. PHP blog Database Design: Now we try to design our database for personal blog. Actually we represent all functional features in Database. We represent each function in the database as a table.   Note that we think every feature as a database table. So guys think how many tables we wi...

PHP variable

Image
PHP variable is nothing but a container. In that container we store data. So we can say that PHP variable is a container that store information. Take a look at the picture to understand the PHP variable. PHP variable naming convention:  Each variable has a name. To write variable name we need to follow some rules such as PHP variables start with $ sign. A variable can constitute with letter, number, underscore or dash sign. PHP variable is case sensitive. Here I give some PHP variable examples. $var, $Var, $myVariable, $this_variable, $product, $_book, $__book, $this-variable All of the above rule is right but in PHP we cannot write $this-variable, $_book, $__book  type of variable. Now we try to write a variable example with PHP code. <?php $var=10; echo $var; ?> Save this code with any name and run. This will show 10. If you write same variable many times  in PHP code segment, PHP just count the last variable information such as <?php $var=10; $var=50; $var=100...

Step by step blog creation tutorials using PHP & MySQL: Part-1

Image
Primary discuss of a PHP blog Everyone wants to create personal blog using PHP, though you can use WordPress for personal blog. It is not possible to be a PHP professional without completing any PHP projects. To be an advanced web developers you need to complete more projects such as PHP shopping cart, PHP online exam etc. Here I give you step by step tutorials on personal blog.  This tutorial developed only for advanced users. If you think that you are not an advanced PHP developers just skip this tutorial and try to learn our PHP basic tutorials. Before tending to continue our discussion at first we need to analyze the  primary requirement of a blog. Requirement analysis is very important for future decision. I divide the requirement analysis into two parts.  Functional analysis and  Database analysis or Entity analysis Functional Analysis for Personal blog Functional analysis means what function do a blog. Such functions are login, registration, blog post, catego...

Delete all trailing whitespace in VIM

Delete all trailing whitespace (at the end of each line) :%s/\s\+$//