-
Show up your browser detail
<?php function getBrowser() { $u_agent = $_SERVER['HTTP_USER_AGENT']; $bname = 'Unknown'; $platform = 'Unknown'; $version= ""; //First get the platform? if…
-
Get Browser Name
<?php echo("“); function get_browser_name($user_agent) { if (strpos($user_agent, ‘Opera’) || strpos($user_agent, ‘OPR/’)) return ‘Opera’; elseif (strpos($user_agent, ‘Edge’)) return ‘Edge’; elseif (strpos($user_agent,…
-
Get Client IP, Mac Address and User Agent
Here is sample to get Client IP, Mac Address and Browser User Agent <?php // PHP program to get…
-
Ext JS – Redirecting the control to another url in success function
Here is a good sample link: https://www.sencha.com/forum/showthread.php?82438-redirecting-the-control-to-another-url-in-success-function
-
Ext JS – Building a Login System
Dear All, Today, would like to share Ext JS’s building a log system. You may find more details via following…
-
Difference between sqlserver 2008 and sqlserver 2012
In previous articles i explained sqlserver 2008 concepts like Delete duplicate rows/columns from table, Sql server 2012: 1.The SQL Server 2012…
-
SQL on Azure Succinctly
The nature of business today demands that companies have an online presence. In SQL on Azure Succinctly, author Parikshit Savjani…
-
SQL SERVER – How to See Active SQL Server Connections For Database
How many user are connected to my database? Or How do I know which user is connected to my database…