-
Ext JS 4 – Filling combobox using MYSQL db via PHP script
Using Extjs 4 with the MVC architecture. Here is such a good sample. https://stackoverflow.com/questions/15067889/extjs-4-filling-combobox-using-mysql-db-via-php-script/15068960#15068960
-
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…