Posted by BRD in PHP, TutorialsDec 16th, 2009 | 4 Comments
Classes and Objects:
The programming paradigm we have learned so far is called Procedural Paradigm. In Procedural programming paradigm, programmer writes a program as collections of independently behaving procedures and makes use of procedure call to access those procedures. As we already discussed in Part8, how procedural programming is a better choice than a simple unstructured programming. It has been a long time, programmers have started thinking about new paradigm called Object oriented paradigm (OOP) which provides a better way to develop big and complex system than procedural programming....
Posted by BRD in PHP, TutorialsDec 5th, 2009 | 7 Comments
Forms:
A form is an area where user can input data. The place in the form where user input data is called form element. A form element can be a text field, text area field, drop-down list, radio buttons and checkbox. In this tutorial we will apply the knowledge we have gained so far and use it with HTML forms. The best thing to use PHP with HTML is that any elements in HTML forms are directly available in PHP scripts. That means the data entered in HTML forms can be manipulated using PHP scripts.
Posted by WAD in Design, Tutorials, illustratorDec 3rd, 2009 | 9 Comments
Web and graphic designing can’t be mastered without an inspirational art and passion .Illustrator is a standard way to bring your vision into existence and flow your creativity in the canvas of the software. Things can’t be gained or achieved without hard work, the illustrator gives you a chance to master the complexity and enhance your designing skill through the advanced tools and option of Illustrator.
Posted by BRD in PHP, TutorialsDec 2nd, 2009 | 7 Comments
Function:
A function is a subprogram that performs a specific task when called by the main program. It is always a good practice to divide a huge program into a number of subprograms until elementary functions are reached. More clearly, a huge program should be divided into number of functions, and a function precisely should do one job. Suppose, we have a big program that reads data from user at the beginning, save data to a database and displays the saved data at the end.
Posted by Snigdha in TutorialsDec 1st, 2009 | 7 Comments
Blog is a tangible demonstration of creative effort. It is in a simple term a platform where an individual can share its feeling, expression, guideline through text, pictures, and videos. We human beings are social animal, we like to share thought make a difference and motivate people to move our way .Blog is one medium which helps us convey a message in fewer words with a greater impact.
As you are thinking of making a difference, it is the right time you start to blog. There are number of questions that makes you ponder when you think about blog .the first thing that arises is what do I blog...
Posted by Snigdha in Advertising, SEO, TutorialsNov 26th, 2009 | 21 Comments
Proficiency in marketing is one of the most important skills that an individual should inherit .Precise promotion, is that art of marketing that will allow your webpage to become profitable in no time. In order to enhance into promotion and target the niche market, as a webpage owner you need the nitty-gritty of webpage promotion.
Considering these feasible simple steps of marketing your webpage will hit the target making your page popular among the target audience.
Posted by BRD in PHP, TutorialsNov 23rd, 2009 | 3 Comments
Array:
Array is a systematic collection of data of similar data types that can be accessed by numeric index. Array is one of the most important and oldest data structures that are used to implement other data structures like strings, maps, vector etc. An array in PHP is in fact an ordered map type that associates values to keys. We suggest readers to not get confused with map type here, simply understand PHP array as a data type that can be accessed using keys.
Posted by BRD in PHP, TutorialsNov 20th, 2009 | 9 Comments
Strings:
A string is an array of characters. This tutorial demonstrates the use of string to manipulate text. A string can be represented in one of the following four ways; single quoted, double quoted, heredoc syntax and nowdoc syntax. Before describing each string in detail, it would be appropriate to discuss about escape sequence. Escape sequence are used to format the output text and other output options.
Posted by WAD in Photoshop, TutorialsNov 19th, 2009 | 12 Comments
Photoshop is a graphic editing software and has been described as “an industry standard for graphics professional”. Photoshop provides functionality for designers to convert their concept into a self explained graphic. Especially in Typography, there is no limitation of creativity in terms of presentation, instruction and final results.
Posted by BRD in PHP, TutorialsNov 15th, 2009 | 5 Comments
Loops
A loop is a programming construct that facilitates programmer to execute some code number of times or a specified condition is true. For instance, we need to read a file stored in computer and print it in screen. Suppose the function available to read a file reads one line at a time and the file contains many lines, we have to write the same line of code many times to read one line at a time from the file. By using loops we can execute the same code number of times called iterations to read the whole file, one line at a time until there is no line left in the file.