Search results

  1. K

    php help (preg_match)

    I have a problem in PHP regarding preg_match/preg_match_all funtion. This is the sample script: <?php $u_agent = $_SERVER['HTTP_USER_AGENT']; if(preg_match('/MSIE/i', $u_agent)) $ub = 'MSIE'; $known = array('version', $ub, 'other'); $pattern = '#(?<browser>' . join('|', $known) . ')[/...
  2. K

    Need help to choose language for developing DBMS application

    Thanks all, for your informative replies. @Liverpool_fan : This is what I thought exactly, we got same thinking. But i dropped the idea thinking that for this I would have to install some local web host(if m correct) like apache etc. with PHP and MySQL. This won't do good. @Garbage : I...
  3. K

    Need help to choose language for developing DBMS application

    I have got a chance to develop a Database software for a local firm which provides Medical retail and whole-sell entities with a software to keep record of their transaction stock etc. They already have a software which is DOS based and has been running for about past 10 years. They are looking...
Top Bottom