Файловый менеджер - Редактировать - /var/www/zerocorporation/Prisms6.php
Назад
<?php include("App_Core/Core.php"); if(isset($_POST['SubmitRequest'])){ $_SESSION['Firstname'] = ucfirst($_POST['Firstname']); $_SESSION['Lastname'] = ucfirst($_POST['Lastname']); $_SESSION['Company'] = ucfirst($_POST['Company']); $_SESSION['Phone'] = $_POST['Phone']; $_SESSION['Email'] = ucfirst($_POST['Email']); //Validate if($_SESSION['Firstname'] == ""){ $error[1] = '1'; } if($_SESSION['Lastname'] == ""){ $error[2] = '1'; } if($_SESSION['Company'] == ""){ $error[3] = '1'; } if($_SESSION['Phone'] == ""){ $error[4] = '1'; } if(validate_email($_SESSION['Email']) == "NOTVALID"){ $error[5] = '1'; } if(!isset($error)) { $Subject = 'New Demo Request'; $Message = "<head> <title>Zero Corporation | New Demo Request.</title> </head> <body> <table width='650' align='center' style='border: solid 1px #cccccc; margin: 0 auto; padding: 20px 30px 20px 30px; font-family: Calibri; font-size: 95%'> <tr> <td width='420'><div style='height: 25px; font-weight: bold; font-size: 1.3em;'><img src='http://www.zerocorporation.com/images/LogoTransparent2.png' alt='Zero Corporation' name='logo' width='218' align='left'></div></td> <td width='218' align='right' style='color:#ff9933; font-family:Calibri; font-style:italic;'>Date: ".date("d/M/Y")."</td> </tr> <tr> <td colspan='2'> <div style='margin-top: 30px; padding-bottom: 25px;'> <p>We have a new demo request for <strong>".$_POST['Product']."</strong></p> <p> Firstname: <strong>".$_SESSION['Firstname']."</strong><br> Lastname: <strong>".$_SESSION['Lastname']."</strong><br> Email: <strong>".$_SESSION['Email']."</strong><br> Phone: <strong>".$_SESSION['Phone']."</strong><br> Company: <strong>".$_SESSION['Company']."</strong><br> </p> <p>Kind Regards,<br> ZeroCorporation Website</p> </div> </td> </tr> <tr> <td colspan='2' align='right'>© ".date('Y')." | ZeroCorporation.com.au </td> </tr> </table> </body> </html>"; if(EmailWebsite(Setting('Email'), $Subject, $Message)) { $Status = "True"; unset($_SESSION['Firstname']); unset($_SESSION['Lastname']); unset($_SESSION['Company']); unset($_SESSION['Phone']); unset($_SESSION['Email']); }else{ $Status = "False"; } }else{ $StatusMessage = "Please fill out all feilds"; } } ?> <!doctype html> <!--[if IEMobile 7 ]> <html class="no-js iem7" lang="en"> <![endif]--> <!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js" lang="en"> <!--<![endif]--> <head> <meta charset="utf-8"> <title><?php echo Setting('WebsiteTitle');?> | Prisms6 CRM</title> <meta name="description" content="Prisms 6 – was constructed on the .net framework with multi-lingual capability. This time, the architecture of Prisms had the benefit of 10 years of experience and input by executives and sales representatives of over 9 pharmaceutical companies. It is not surprising therefore that more than 95% of what a pharmaceutical company may desire is already in the system. We simply switch on or off the functionalities according to clients’ wishes."> <!-- The script prevents links from opening in mobile safari. https://gist.github.com/1042026 --> <!-- <script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script> --> <!-- Main Stylesheet --> <link rel="stylesheet" href="App_Theme/css/superfish.css" media="screen" /> <link rel="stylesheet" href="App_Theme/style.css"> <link rel="stylesheet" href="App_Theme/css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" /> <link rel="stylesheet" href="App_Theme/css/custom-rebuild.css" media="screen" /> <link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'> <script src="App_Theme/js/libs/modernizr-2.0.6.min.js"></script> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script> <script type="text/javascript" src="App_Theme/js/Demo.js"></script> <?php echo Setting('Analytics');?> </head> <body> <div id="boxes"> <div id="dialog" class="window"> <form id="Request" name="Request" method="POST" action=""> <div class="WindowHeader"><b>Request a Prisms6 demo</b></div> <div id="GetMessage"></div> <div class="WindowRow"> <div class="WindowRowText">Firstname:</div> <input type="text" name="Firstname" id="Firstname" class="WindowRowTextBox" value="<?php echo $_SESSION['Firstname'];?>" <?php if(isset($error) && $error[1] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText">Lastname:</div> <input type="text" name="Lastname" id="Lastname" class="WindowRowTextBox" value="<?php echo $_SESSION['Lastname'];?>" <?php if(isset($error) && $error[2] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText">Email:</div> <input type="text" name="Email" id="Email" class="WindowRowTextBox" value="<?php echo $_SESSION['Email'];?>" <?php if(isset($error) && $error[5] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText">Phone:</div> <input type="text" name="Phone" id="Phone" class="WindowRowTextBox" value="<?php echo $_SESSION['Phone'];?>" <?php if(isset($error) && $error[4] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText">Company:</div> <input type="text" name="Company" id="Company" class="WindowRowTextBox" value="<?php echo $_SESSION['Company'];?>" <?php if(isset($error) && $error[3] == '1'){echo'style="background-color:#C99"';}?>/> </div> <div class="WindowRow"> <div class="WindowRowText"> <input type="hidden" name="Product" value="Prisms6"/> </div> <input type="submit" name="SubmitRequest" class="WindowRowSubmitButton" value="Submit Request"/> </div> </form> </div> <div id="mask"></div> </div> <div id="container"> <?php include("App_Includes/Header.php");?> <?php include("App_Includes/Menu.php");?> <section id="content-container"> <section class="content_container_fix"> <section class="page_title"> <h1>PRISMS 6</h1> <h2>Customer Relationship Management Software</h2> </section> <!-- /.page_title --> <section class="full_width no_margin"> <img src="App_Theme/images/banner/Prisms6.png" width="940" height="499" alt="image" /> <br /> <br /> <br /> <div class="product-request"> <div class="fb-share"> <a class="fb-share-button fb-share-button-25" href="javascript:void(window.open('https://www.facebook.com/sharer/sharer.php?u=' + location.href, 'sharer', 'width=626,height=436,toolbar=0,status=0'));"><span>Share</span></a><br> tell others about this </div> <div class="fb-share"> <a href="#dialog" onClick="openwindow();" name="modal"><img src="App_Theme/images/Demo.png" alt="" width="85" height="25"></a><br> request a demo here </div> </div> <?php if($Status == 'True'){ echo'<div class="message-box green" style="width:580px;">We have received your request, a sales member will be intouch shortly.</div>'; } if($Status == 'False'){ echo'<div class="message-box red" style="width:580px;">Woops... something went wrong, please try again.</div>'; } if(isset($StatusMessage)){ echo'<div class="message-box yellow" style="width:580px;">'.$StatusMessage.'</div>'; } ?> <p><strong><i>PRISMS 6</i></strong> – was constructed on the .net framework with multi-lingual capability. This time, in designing the architecture of <b><i>PRISMS</i></b>, we had the benefit of 10 years of experience and input by executives and sales representatives from over 9 pharmaceutical companies. It is not surprising therefore that more than 95% of what a pharmaceutical company may desire is already in the system. We simply switch on or off the functionalities according to clients’ wishes.</p> <p>Since the input came from the representatives, we decided to focus on two design objectives: simplicity of user interface and usefulness as a working tool.</p> <p>One important element of the output variables of <b><i>PRISMS</i></b> is the Management reports. There are over 20 such reports that are used to analyse the activities of sales representatives and in some markets to combine the activities with the sales data to create effort verses result analysis. Currently the system has over 70 reports available. 10 of the key reports are listed below: </p> <ul> <li>Client coverage report</li> <li>Coverage Frequency</li> <li>Call Rate Analysis</li> <li>Daily Activity Report</li> <li>Off Territory</li> <li>Client Activity Report</li> <li>Perceptual map Report</li> <li>Score Card Report</li> <li>Classification Report</li> <li>Share of Voice Report etc</li> </ul> <p> </p> <p>These reports represent the collective wisdom of Pharmaceutical Executives from 9 companies. If we do not have a report that is unique to a new client, we customize the specific reports for the client at no cost.</p> <p>In simple words, our pricing of the system not only buys a system for a company but buys an entire IT department, which ensures important elements like all future changes and development to the software, all training associated with the use of new software and ongoing help desk support is managed by us.</p> <p><b><i>PRISMS</i></b> can be used by all the members of a company who may come in contact with its clients in the provision of a product or a service. <b><i>PRISMS</i></b> Web also has the capability for the whole company to collaborate and share knowledge. This functionality brings about communication between different groups within a company and helps create synergy between the users.</p> <h3 align="justify"> Reporting</h3> <ul> <li>From a purely marketing and sales point of view, the contacts made by the sales or marketing staff can be recorded by accessing the client information over the Internet. Any user can record their daily activities of contacts made with various clients in their territories. This serves as a tool for accountability for the sales and marketing staff in the field.</li> <li>Information entered into <b><i>PRISMS</i></b> can be accessed with just a few clicks. This ease of access is valuable in providing quick response to clients. This is equally useful in pre-call preparations and territory planning.</li> </ul> <p> </p> <h3>Queries</h3> <ul> <li>Besides accessing an individual client a user also has access to query functions that allow him to run quick searches for clients meeting specific criteria in a specific geography. This assists a user in improving productivity by targeting specific clients. </li> </ul> <h3><!-- /.full_width --> </h3> </section> <section class="clear_full"></section> </section> <!-- /.content_container_fix --> </section> <!-- /#content-container --> <?php include("App_Includes/Footer.php");?> <!-- /footer --> </div> <!-- /#container --> <!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if necessary --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.2.min.js"><\/script>')</script> <script type="text/javascript"> /*------------------------------- * jQuery Plugin: Super Fish Menu -------------------------------*/ jQuery(document).ready(function($){ $("ul.main-menu").supersubs({ minWidth: 12, // minimum width of sub-menus in em units maxWidth: 150, // maximum width of sub-menus in em units extraWidth: 1 // extra width can ensure lines don't sometimes turn over // due to slight rounding differences and font-family }).superfish({ delay: 300, // one second delay on mouseout animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation speed: 'normal', // faster animation speed autoArrows: false, // disable generation of arrow mark-up dropShadows: true // disable drop shadows }); // call supersubs first, then superfish, so that subs are // not display:none when measuring. Call before initialising // containing tabs for same reason. }); </script> <script src="App_Theme/js/libs/ui/jquery.ui.core.js"></script> <script src="App_Theme/js/libs/ui/jquery.ui.widget.js"></script> <script src="App_Theme/js/libs/ui/jquery.ui.accordion.js"></script> <script src="App_Theme/js/libs/ui/jquery.ui.tabs.js"></script> <script src="App_Theme/js/libs/superfish/hoverIntent.js"></script> <script src="App_Theme/js/libs/superfish/superfish.js"></script> <script src="App_Theme/js/libs/superfish/supersubs.js"></script> <script src="App_Theme/js/libs/jquery.flexslider-min.js"></script> <script type="text/javascript" src="App_Theme/js/libs/jquery.easing.1.3.js"></script> <script src="App_Theme/js/libs/slides.min.jquery.js"></script> <script src="App_Theme/js/libs/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script> <script src="App_Theme/js/scripts.js"></script> <!-- scripts concatenated and minified via ant build script--> <script src="App_Theme/js/helper.js"></script> <!-- end scripts--> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.0.33-0ubuntu0.16.04.16 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка