/[pliva-si]/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

Diff of /inc/conn.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by ravilov, Mon Jun 25 09:57:25 2001 UTC revision 1.7 by dpavlin, Tue Nov 20 08:48:14 2001 UTC
# Line 1  Line 1 
1  <?  <?
2          require('class.DBI');  //      require('class.DBI');
3          $db="corp";          require("dbi_pgsql.php");
4          $dbh = new DBI("dbi:pg:$db","dpavlin","");  
5            $db="plivasi";
6            $dbh = new DBI($db,"dpavlin","");
7    
8          if (!$WAP && ( strstr($accept,"text/vnd.wap.wml") || strstr($accept,"hdml;version=3.0") ) ) {          if (!$WAP && ( strstr($accept,"text/vnd.wap.wml") || strstr($accept,"hdml;version=3.0") ) ) {
9                  Header("Location: wap.php");                  Header("Location: wap.php");
# Line 20  Line 22 
22          $sth->execute();          $sth->execute();
23          global $menu_item;          global $menu_item;
24          if ($row=$sth->fetchrow_hash()) {          if ($row=$sth->fetchrow_hash()) {
25                  $menu_item=$row[0];                  $menu_item=str_replace("\\n"," ",$row[0]);
26          }          }
27    
28            // generate random numbers of pictures on top-right corner
29            $rnd=range(1,5);
30            srand(time());
31            shuffle($rnd);
32    
33            // parse /preview url
34    
35            global $visible_is_true;
36    
37            $preview_url="/preview";
38            if (substr($GLOBALS[REQUEST_URI],0,strlen($preview_url)) == $preview_url) {
39                    $is_preview=1;
40                    $visible_is_true = "true";      // visible can be true or false
41            } else {
42                    $visible_is_true = "visible is true"; // limit output just to visible
43            }
44  ?>  ?>

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.7

  ViewVC Help
Powered by ViewVC 1.1.26