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

Contents of /contact.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.15 - (show annotations)
Wed Nov 21 10:27:39 2001 UTC (22 years, 5 months ago) by dpavlin
Branch: MAIN
Changes since 1.14: +2 -1 lines
ne gube se kontakt adrese u validaciji

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 include("section.inc");
10 $main_file=$section;
11
12 $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) );
13
14 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 $smarty->assign("from",$from);
20
21 $email="webmaster@pliva.hr"; // default
22
23 $sth = $dbh->prepare("select email from emails where referer='$from' limit 1");
24 $sth->execute();
25 if ($row=$sth->fetchrow_hash()) {
26 $email=$row[email];
27 } else {
28 $sth = $dbh->prepare("select email from emails,menu where menu.section=referer and url like '$from%'");
29 $sth->execute();
30 if ($row=$sth->fetchrow_hash()) {
31 $email=$row[email];
32 }
33 }
34
35 $email=str_replace("\n","",$email);
36 $email=str_replace(" ","",$email);
37 $email_val=explode(",",$email);
38
39 $sth = $dbh->prepare("select iso,name from countries order by name");
40 $sth->execute();
41 while ($row=$sth->fetchrow_hash()) {
42 $countries[]=$row;
43 }
44 $smarty->assign(array(countries=>$countries,
45 email_val=>$email_val,
46 ));
47
48 include("common.inc");
49
50 if (isset($mailto) && check_required()) {
51 $main="Your comment is sent to $mailto. Thank you.";
52 include("quoted-printable.inc");
53 iso_mail("$fullname ($country) <$mailfrom>",$mailto,$subject,$comment);
54 # $main.="<pre>$mailto $fullname $mailfrom $country $subject $comment</pre>";
55 } else {
56 $main=$smarty->fetch("$main_file.tpl");
57 }
58
59 $smarty->assign( array(MAIN=>$main,
60 contact_section=>1,
61 ));
62
63 $smarty->display("index.tpl");
64 ?>

  ViewVC Help
Powered by ViewVC 1.1.26