/[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.3 by dpavlin, Fri Mar 2 07:50:38 2001 UTC revision 1.16 by dpavlin, Wed Nov 21 10:29:57 2001 UTC
# Line 6  $smarty = new Smarty; Line 6  $smarty = new Smarty;
6    
7  $smarty->assign( array ( Title=>"Pliva d.d." ) );  $smarty->assign( array ( Title=>"Pliva d.d." ) );
8    
9  $section=str_replace(".php","",basename($PHP_SELF));  include("section.inc");
 $smarty->assign("section",$section);  
   
10  $main_file=$section;  $main_file=$section;
11    
 $title="CONTACT US";  
 $lpic="cont"; $lext=".jpg";  
 $mpic="contactus.gif";  
   
12  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );  $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
13    
14  $from=str_replace(".php","",basename($HTTP_REFERER));  if (! isset($from) || $from == "") {
15            $from=str_replace(".php","",basename($HTTP_REFERER));
16            if (strstr($from,"?")) $from=substr($from,0,strpos($from,"?"));
17            if ($from == $HTTP_HOST || $from=="www.pliva.hr") $from="index";
18    }
19    
20    $email="webmaster@pliva.hr";    // default
21    
22  $sth = $dbh->prepare("select email from emails where referer='$from' limit 1");  $sth = $dbh->prepare("select email from emails where referer='$from' limit 1");
23  $sth->execute();  $sth->execute();
 $email_to="webmaster@pliva.hr";  
24  if ($row=$sth->fetchrow_hash()) {  if ($row=$sth->fetchrow_hash()) {
25          $email_to=$row[email];          $email=$row[email];
26    } else {
27            $sth = $dbh->prepare("select email from emails,menu where menu.section=referer and url like '$from%'");
28            $sth->execute();
29            if ($row=$sth->fetchrow_hash()) {
30                    $email=$row[email];
31            }
32  }  }
33    
34    $email=str_replace("\n","",$email);
35    $email=str_replace(" ","",$email);
36    $email_val=explode(",",$email);
37    
38  $sth = $dbh->prepare("select iso,name from countries order by name");  $sth = $dbh->prepare("select iso,name from countries order by name");
39  $sth->execute();  $sth->execute();
40  while ($row=$sth->fetchrow_hash()) {  while ($row=$sth->fetchrow_hash()) {
41          $countries[]=$row;          $countries[]=$row;
42  }  }
43  $smarty->assign(array(countries=>$countries,  $smarty->assign(array(countries=>$countries,
44          email_to=>$email_to,          email_val=>$email_val,
45          ));          ));
46    
47  include("common.inc");  include("common.inc");
 $main=$smarty->fetch("$main_file.tpl");  
   
 $smarty->assign( array(MAIN=>$main, from=>$from,  
         contact_section=>1,  
         ));  
48    
49    $smarty->assign("from",$from);
50    
51  $smarty->assign("debug",$PHP_SELF." -- ".basename($PHP_SELF)." -- $section --".  if (isset($mailto) && check_required()) {
52          $url[0] . "from: $from");          $main="Your comment is sent to $mailto. Thank you.";
53            include("quoted-printable.inc");
54            iso_mail("$fullname ($country) <$mailfrom>",$mailto,$subject,$comment);
55    #       $main.="<pre>$mailto $fullname $mailfrom $country $subject $comment</pre>";
56    } else {
57            $main=$smarty->fetch("$main_file.tpl");
58    }
59    
60    $smarty->assign( array(MAIN=>$main,
61            contact_section=>1,
62            ));
63    
64  $smarty->display("index.tpl");  $smarty->display("index.tpl");
65  ?>  ?>

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.16

  ViewVC Help
Powered by ViewVC 1.1.26