Home » Posts tagged with "Anil Kumar Panigrahi"

September 20, 2011

Facebook

Facebook Fans of Anil Labs   Follow US      
Filed in:

 

Hi, In this post i am going to explain simple steps to implement and hosting your website in google app engine for free. There are many hosting servers hostgator,godaddy … etc. But we have to pay amount them for hosting space.Google is providing a free hosting space with 1 GB daily bandwidth. It will be useful for static html pages. But it is doesn’t...

 

Hi friends, In this post i would like to explain about how to change the order of placements using php code. It is simple code to implement. We can use this code in admin section to change the order and display those content depends on order. Today i want to share with you all. Database Take table that 1234CREATE TABLE tblOrder (   `post_id`...
Filed in: mysql, PHP Code

 

Hi friends, I got the requirement to display the list of table names from the database using php code. I got the solution for it, once check the below code. 1) Connect to database: mysql_connect(“dbserver”,”dbuser”,”dbpassword”); 2)Get the list of tables from table $result = mysql_list_tables(“dbname”); 3)...
Filed in: mysql, PHP Code

 

Hi friends, In our php application some times we want to highlight the source code to user friendly , so the following function helped you to highlight the source code. 12345678910111213<?php if (!empty($_POST['text'])){ echo '<div style="border: solid 1px red; width:300px;height: 150px; padding: 20px; margin:...
Filed in: PHP Code