/[corp_html]/inc/conn.inc
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /inc/conn.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.5 - (hide annotations)
Sat Mar 3 12:56:37 2001 UTC (23 years, 2 months ago) by dpavlin
Branch: MAIN
Changes since 1.4: +8 -0 lines
bolji title-ovi stranica

1 dpavlin 1.1 <?
2     require('class.DBI');
3     $db="corp";
4     $dbh = new DBI("dbi:pg:$db","dpavlin","");
5    
6 dpavlin 1.4 if (!$WAP && ( strstr($accept,"text/vnd.wap.wml") || strstr($accept,"hdml;version=3.0") ) ) {
7 dpavlin 1.2 Header("Location: wap.php");
8 dpavlin 1.3 header("Content-type: text/vnd.wap.wml");
9 dpavlin 1.2 exit;
10     }
11    
12 dpavlin 1.5 $url=basename($PHP_SELF)."?$QUERY_STRING";
13     $sth = $dbh->prepare("select item from menu where url = '$url'");
14     $sth->execute();
15     global $menu_item;
16     if ($row=$sth->fetchrow_hash()) {
17     $menu_item=$row[0];
18     }
19    
20 dpavlin 1.1 ?>

  ViewVC Help
Powered by ViewVC 1.1.26