jump to navigation

[JQuery] Create Auto-Suggest Form Similar to Facebook and Google July 23, 2010

Posted by admin in : Website , add a comment

With the presence of AJAX a few years ago, the revolution website really useful. If you are the user search engines likes Google and Yahoo, then every day you will feel the benefit. When we start typing keyword or keyphrase search, before we’re finished typing, will be existing keywords suggestion that as auto complete for us.

Facebook is like that, our friends who are in contact facebook will emerge once we start typing the alphabet in the search form box. Suppose we want to find the name of “Sergei Brin”, when just typing the letter “S”, has emerged suggestion such as “Susan”, “Sussy”, “Sandra”, etc.. Well, if you want to apply in your website, then you can download the script jquery auto suggest.

autosuggest search [JQuery] Create Auto Suggest Form Similar to Facebook and Google

(more…)

PHP Tutorial: How to Parse CSV Files Easily July 10, 2010

Posted by admin in : Others , add a comment

csv Parsing Files PHP Tutorial: How to Parse CSV Files EasilyCSV or Comma-Separated Values is a standard file comprising many commas as dividing. Usually this CSV file can be obtained from the excel exports (XLS) or export from database results.

Because portable and easy to implement, it is used as a standard csv file to a file that contains the columns. Well, what if CSV is applied? What if we practice in PHP? Let’s say if we want to import csv file that can be inserted into the database quickly.

Thank God as default PHP have library that helped us to easily parse CSV so it does not need to bother us parsing with complicated logic programming with traditional style. Well, here’s an example of parsing (separating) a comma in CSV file with fgetcsv function(). Here is an example of separation by comma in csv file a simple using php language. (more…)

Display Total Records From A Table with PHP + SQL July 10, 2010

Posted by admin in : Website , add a comment

phpmysql Display Total Records From A Table with PHP + SQLThis is a way to display and show the total records from a table in database. Certainly the programming language that “raw” on internet that is php. With this tutorial, I expect can help you to display the total record count.

Knowing and display total records is very important when we want to divide the page displays a table. Let’s say, we are told to create a project to display data on the number of students in a school which has 2000 pupils. We impossible directly provide data on student name as many as 2000 people in one page. With PHP + SQL commands, we can divide the example into 40 pages with the assumption that each page provides data 50 names of students (50*40).

(more…)

Where Website That Free Teaching PHP Programming? May 21, 2010

Posted by admin in : Internet Tips , add a comment

phpnet Where Website That Free Teaching PHP Programming?You want to seriously pursue web programming to build a sophisticated website but not in HTML mode? Want to find the portable programming language, robust, easy to learn and object oriented but within the scope of programming, web based?

Php is the answer I most recommend. Currently, almost nothing Linux hosting that does not provide Php programming language is installed in it.

Perl has been missed. Python stuck and was arrested by php. ASP and ASP.NET hosting more often struggled in Windows. JSP is too exclusive traits and greater investment in security, although more of everything than the others, but the average in the JSP hosting is very expensive rates. Well, now have a clear picture is not about comparing languages, web based server script above? PHP is the answer. You must be master of PHP to be able to compete today in the Internet world. Average CMS and blog platforms to use php as their strengths.

Now, the question is, where websites that teach free php programming? Where a site that provides language-learning tutorial guides php? Anywhere website that can provide the basics of php from basic to advanced programming is free? Actually, we could easily find on google or in the bing teaches an online place where the php website by typing the keyword “free php programming” or “free tutorials php programming.” But allow me to serve you better. I will give you a reference number from the list of basic php tutorial site to intermediate and even advanced.
(more…)

Make New User Mysql Database February 25, 2010

Posted by admin in : Internet Tips , add a comment

At the time installing mysql database first, by default, mysql will create a user with root name.

If I do not want to use the root user, and how to create/add new user in mysql?

You can use the GRANT command, as follows:

GRANT ALL ON *.* TO ‘username’@’hostname’ IDENTIFIED BY ‘yourpassword’;

For example I want make user with name ictlearning with password 123, then I type :
(more…)