/[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.13 - (show annotations)
Mon Oct 1 14:05:16 2001 UTC (22 years, 6 months ago) by dpavlin
Branch: MAIN
Changes since 1.12: +1 -7 lines
banner support, new multi-page support (with back-end)

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 $main_file=$section;
10 include("section.inc");
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
20 $email="webmaster@pliva.hr"; // default
21
22 $sth = $dbh->prepare("select email from emails where referer='$from' limit 1");
23 $sth->execute();
24 if ($row=$sth->fetchrow_hash()) {
25 $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");
39 $sth->execute();
40 while ($row=$sth->fetchrow_hash()) {
41 $countries[]=$row;
42 }
43 $smarty->assign(array(countries=>$countries,
44 email_val=>$email_val,
45 ));
46
47 include("common.inc");
48
49 if (isset($mailto) && check_required()) {
50 $main="Your comment is sent to $mailto. Thank you.";
51 include("quoted-printable.inc");
52 iso_mail("$fullname ($country) <$mailfrom>",$mailto,$subject,$comment);
53 # $main.="<pre>$mailto $fullname $mailfrom $country $subject $comment</pre>";
54 } else {
55 $main=$smarty->fetch("$main_file.tpl");
56 }
57
58 $smarty->assign( array(MAIN=>$main, from=>$from,
59 contact_section=>1,
60 ));
61
62 $smarty->display("index.tpl");
63 ?>

  ViewVC Help
Powered by ViewVC 1.1.26