for those people who want to give users that in how many seconds actually your web page loaded completely. this script will be useful for you. there are so many ways to do this ( as usual ) but the classic approach would be step 1 : make a note of the time when your page get starts step 2: make a note of the time at the end of your total page execution step 3 : step 2 – .. .. ..
Retrieving Column Names of Table in MySQL, SQL Server
when you do select query that will give you only records available, in some conditions we may require column names of table for dynamic query generating programs for that purpose here is the query for retrieving column names in mysql : show columns from <table name> in sqlserver select column_name from information_schema.columns where table_name =<tablename> for more infomation .. .. ..
