Today i m going to show you how to configure DHCP server in packet tracer.
Wednesday, September 24, 2014
DNS Server Configuration in Packet Tracer
Today i m going to show you how to configure DNS server in packet tracer.
How to Insert data into Database in MySQL
Insert Command for Database are following below:
INSERT INTO table_name(column1,column2,....) VALUES(value1,value2,.....);
INSERT INTO table_name(column1,column2,....) VALUES(value1,value2,.....);
How To Remove Index.php from Codeigniter URL
Step 1:
Create a .htaccess file in the root directory of your project.
Step2:
Paste the following code to that file and save the file:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
Step 3:
Remove The .htaccess file from your project_name/application directory.
Finally you are done!