Tutorials

PHP - Simple String Conversion

Submitted by razormist on
Learn on how to create a Simple String Conversion using PHP. This code can be use in converting some string easily and automated. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. It is mostly used by a newly coders for its user friendly environment.

How to include PHP files/Templates in CodeIgniter

Submitted by nurhodelta_17 on
This tutorial tackles on how to include PHP flies/Templates or string in views of CodeIgniter. CodeIgniter is a lightweight PHP framework that uses MVC(Model-View-Controller) architecture. We cant just simply include our php file like we did with core PHP using include() function in CodeIgniter instead we do this in controllers following this tutorial.

How to Remove Index.Php in the URL of Codeigniter Application

Submitted by nurhodelta_17 on
This tutorial tackles on how to remove index.php in the URL of CodeIgniter application. By default, index.php is included in the URLs of your CodeIgniter Application. You can remove this by using .htaccess file which contains rules for your URLs. We are going to make this file in this tutorial and a few configurations if your using localhost server.

Advance Login Form in ASP.NET

Submitted by Hasan soherwardi on
Tecnology use:
  1. .Net framework 4
  2. ASP.NET with C#.NET
  3. Microsoft SQL Server 2008 R2
In this application you will to learn how to create:
  1. Login
  2. Remember Password
  3. User Registration with photo
  4. Show user info
  5. Change User Info
  6. Change Password
  7. Validation Controls
Login Information: UserName: Master Password: Master123 UserName: Indian Password: Indian123

CodeIgniter Register with Validation

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a simple registration with form validation using CodeIgniter. CodeIgniter is a lightweight PHP framework that uses the MVC(Model-View-Controller) architechture. Form validation is a process of checking user's input whether it is valid or not depending on the rules applied by creator.

CodeIgniter File Upload with Flashdata

Submitted by nurhodelta_17 on
This tutorial tackles on how to upload files in CodeIgniter with flashdata. CodeIgniter is a PHP framework that uses MVC(Model-View-Controller) architecture. Flashdata are a type of session but is just set one time means that after you reload the page, this data is removed. Flashdata are usually used when displaying action messages like success or errors.