/[corp_html]/contact.php
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 /contact.php

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

revision 1.7 by dpavlin, Mon Mar 5 15:36:16 2001 UTC revision 1.8 by dpavlin, Mon Mar 12 12:53:16 2001 UTC
# Line 20  $smarty->assign( array ( lpic=>$lpic, le Line 20  $smarty->assign( array ( lpic=>$lpic, le
20  $from=str_replace(".php","",basename($HTTP_REFERER));  $from=str_replace(".php","",basename($HTTP_REFERER));
21  if (strstr($from,"?")) $from=substr($from,0,strpos($from,"?"));  if (strstr($from,"?")) $from=substr($from,0,strpos($from,"?"));
22    
23    $email="webmaster@pliva.hr";    // default
24    
25  $sth = $dbh->prepare("select email from emails where referer='$from' limit 1");  $sth = $dbh->prepare("select email from emails where referer='$from' limit 1");
26  $sth->execute();  $sth->execute();
 $email="webmaster@pliva.hr";  
27  if ($row=$sth->fetchrow_hash()) {  if ($row=$sth->fetchrow_hash()) {
28          $email=$row[email];          $email=$row[email];
29    } else {
30            $sth = $dbh->prepare("select email from emails,menu where menu.section=referer and url='results.php?type=a'");
31            $sth->execute();
32            if ($row=$sth->fetchrow_hash()) {
33                    $email=$row[email];
34            }
35  }  }
36    
37  $email=str_replace("\n","",$email);  $email=str_replace("\n","",$email);

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

  ViewVC Help
Powered by ViewVC 1.1.26