/[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

Annotation of /contact.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.11 - (hide annotations)
Tue Mar 27 10:15:10 2001 UTC (23 years ago) by dpavlin
Branch: MAIN
Changes since 1.10: +1 -0 lines
fix e-mail when comming from index

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

  ViewVC Help
Powered by ViewVC 1.1.26