/[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.7 - (show annotations)
Mon Mar 5 15:36:16 2001 UTC (23 years, 1 month ago) by dpavlin
Branch: MAIN
Changes since 1.6: +0 -5 lines
nuke debug

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 $from=str_replace(".php","",basename($HTTP_REFERER));
21 if (strstr($from,"?")) $from=substr($from,0,strpos($from,"?"));
22
23 $sth = $dbh->prepare("select email from emails where referer='$from' limit 1");
24 $sth->execute();
25 $email="webmaster@pliva.hr";
26 if ($row=$sth->fetchrow_hash()) {
27 $email=$row[email];
28 }
29
30 $email=str_replace("\n","",$email);
31 $email=str_replace(" ","",$email);
32 $email_val=explode(",",$email);
33
34 $sth = $dbh->prepare("select iso,name from countries order by name");
35 $sth->execute();
36 while ($row=$sth->fetchrow_hash()) {
37 $countries[]=$row;
38 }
39 $smarty->assign(array(countries=>$countries,
40 email_val=>$email_val,
41 ));
42
43 include("common.inc");
44
45 if (! isset($mailto)) {
46 $main=$smarty->fetch("$main_file.tpl");
47 } else {
48 $main="Your comment is sent to $mailto. Thank you.";
49 include("quoted-printable.inc");
50 iso_mail("$fullname ($country) <$mailfrom>",$mailto,$subject,$comment);
51 # $main.="<pre>$mailto $fullname $mailfrom $country $subject $comment</pre>";
52 }
53
54 $smarty->assign( array(MAIN=>$main, from=>$from,
55 contact_section=>1,
56 ));
57
58 $smarty->display("index.tpl");
59 ?>

  ViewVC Help
Powered by ViewVC 1.1.26