PHP

Simplest Online Notepad for Copy/Paste in PHP

Submitted by opensource on
It's a simple and secured online notepad. It uses PHP file handling functions and there is no database. Just upload and start using it. Create your own unique url : https://note.initedit.com/Enter_your_unique_Text Shortcuts key : ALT + N = New File ALT + C = Copy all ALT + U = URL Copy ALT + D = Download CTRL + S = Save CTRL + L = Lock , Unlock, Edit CTRL + DEL = Delete File File status : Locked =

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.

Social Media

Submitted by En Cumar Islam on
This system allows you to add friends, view profile, chat with other members and also have a notification. This is the begining of by future system. Name: Omar Abdi-wahaab Mohammed Account info: User name:cumar Password:cumar

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.