/[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.8 by dpavlin, Mon Mar 12 12:53:16 2001 UTC revision 1.9 by dpavlin, Mon Mar 12 20:05:04 2001 UTC
# Line 17  $mpic="contactus.gif"; Line 17  $mpic="contactus.gif";
17    
18  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
19    
20  $from=str_replace(".php","",basename($HTTP_REFERER));  if (! isset($from) || $from == "") {
21  if (strstr($from,"?")) $from=substr($from,0,strpos($from,"?"));          $from=str_replace(".php","",basename($HTTP_REFERER));
22            if (strstr($from,"?")) $from=substr($from,0,strpos($from,"?"));
23    }
24    
25  $email="webmaster@pliva.hr";    // default  $email="webmaster@pliva.hr";    // default
26    
# Line 27  $sth->execute(); Line 29  $sth->execute();
29  if ($row=$sth->fetchrow_hash()) {  if ($row=$sth->fetchrow_hash()) {
30          $email=$row[email];          $email=$row[email];
31  } else {  } else {
32          $sth = $dbh->prepare("select email from emails,menu where menu.section=referer and url='results.php?type=a'");          $sth = $dbh->prepare("select email from emails,menu where menu.section=referer and url like '$from%'");
33          $sth->execute();          $sth->execute();
34          if ($row=$sth->fetchrow_hash()) {          if ($row=$sth->fetchrow_hash()) {
35                  $email=$row[email];                  $email=$row[email];

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

  ViewVC Help
Powered by ViewVC 1.1.26