Файловый менеджер - Редактировать - /var/www/zerocorporation/FutureOfIT.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');?> | White Papers</title> <meta name="description" content="Future of IT - Implications to Pharma Industry"> <!-- 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/IMAGES.css"> <link rel="stylesheet" href="App_Theme/css/flexslider.css" type="text/css" media="screen" /> <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 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 an IMAGES 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="IMAGES"/> </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"> <!-- /.page_title --> <section class="full_width"> <?php if($Status == 'True'){ echo'<div class="message-box green">We have received your request, a sales member will be intouch shortly.</div>'; } if($Status == 'False'){ echo'<div class="message-box red">Woops... something went wrong, please try again.</div>'; } if(isset($StatusMessage)){ echo'<div class="message-box yellow">'.$StatusMessage.'</div>'; } ?> <section class = "three_fourth first"> <h2>Future of Information Technology and its implications to the Pharmaceutical Industry (September, 1995)</h2> <p><b>Introduction</b><br><br>Seventeen years ago while lecturing on Karl Marx in Bombay University I predicted that communism, as a political system will not even last my lifetime.Talking about the impact of Information Technology on the future of the Pharmaceutical industry, I am forced to make some predictions.<br> According to R. Buckminster Fuller, humans on this planet have two primary functions:<br> 1) To gather Information.<br> 2) To solve problems.<br> These two fundamental functions have been pivotal to the evolution of every culture.<br><br>The advent of computers in the 50's brought about a major transformation in the speed with which massive amounts of data could be analysed. The marriage of information with technology was a natural progression in this evolution. Since this event, information technology has been transforming our knowledge base at an unprecedented rate. It is almost impossible not to come in contact with information technology in our day to day life, e.g. banking, credit cards, air travel etc.</p> <p><b>Future of Information Technology</b><br><br>“Future of Information Technology is linked to <u><b>The Internet</u></b>”<br><br>What started as a need to protect strategic data being destroyed in case of war has progressed into a powerful platform for permanent peace on this planet. This was the beginning of Internet. The American vision of Super Highways and the desire to share information with the rest of the world resulted in the “net” being opened to anyone who chooses to join in.</p> <p><b><u>What is the Internet?</u></b><br><br>When you connect into the Internet you have the potential to communicate with every other individual on the net. There are approximately 30-50 million users on the net. <br><br><u><b>Figure 1. Future projections of number of users on the Internet cumulative (in millions)</u></b><br><br><img src="App_Theme/images/InternetUsersGraph.png" width="700" height="300" alt="image"/><br><br><u><b>Figure 2. AUSTRALIA Desktop & Notebook shipment in units (000's)</u></b><br><br><img src="App_Theme/images/ComputerUnitsGraph.png" width="700" height="300" alt="image"/></p> <p><b>Who are the users on the “net”?</b><br><b>• </b>Public Institutions<br><b>• </b>Private Institutions<br><b>• </b>Private Individuals<br><br><b>Who owns the net and who controls it?</b><br><b>• </b>No one owns the net and no one controls it.</p> <p><b><u>Commercial use of the Net</u></b><br><br>Although commercial advertising to all groups on the net is against the Netiquette there is nothing against commercial transactions being carried out through the net. It is almost certain that a proportion of buying and selling in the future will be structured through the Internet.</p> <p><b>The status today (Pre-Fibreoptics)</b><br>e.g. Buying Software to flowers.<br>e.g. Buying Electronic components.<br><br><b>The future transactions (Post-Fibreoptics)</b><br>Exchange of information at a rate of 300 Mbps. Real time videos, animation and graphics. Virtual reality will become the next biggest agent of change on the Internet. With virtual reality one could test drive a car, provide clinical consultation or even perform surgery.<br><br><b>Characteristics of Internet consumer:</b><br><b>• </b>In-tune with computer and the Internet.<br><b>• </b>Make decisions on the strength of information.<br><b>• </b>Demand the best service and will be “destructive“ in expressing dissatisfaction.</p> <p><b><u>Relevance to Pharmaceuticals</u></b><br>1. Product launches and corporate information.<br>2. Diagnosis and Prescription.<br>3. Information on product, side effects, training on delivery system and service.<br>4. Health Authorities control and National boundaries.<br>5. Third party evaluation on price, quality and performance.<br>6. Emergence of conditions towards perfect competition.<br>7. Mail order houses.<br>8. Two-way exchange of Information and collection of data.<br>9. Pharmaceutical shift from treatment to prevention.<br><br>There would be a natural tendency to move into the insurance business which would be linked to lifestyle.</p> <p><b><u>Winners and Losers</u></b><br><b>• </b>Those who are ready to tune in to this technology.<br><b>• </b>Those who have had experience with accumulation, organisation and conversion of data into useful information.<br><b>• </b>Those who have the vision and ideas to take a lead in connecting to the future.<br><b>• </b>Software companies who have acquired expertise in this field.<br><b>• </b>PR and Ad agencies who have the expertise and experience in this field.</p> <p><b>Scientific Reason as to why the commercial world is set to take this direction?</b><br><br><b>Avogadro's Law:</b> A generalised Principle.<br>Under the same conditions of temperature and pressure, equal number of molecules of all gases will occupy the same amount of space. This is cosmic democracy in the physical world.<br>All humans on this planet irrespective of their status, nationality, colour or religion are equal in one respect - the freedom to think, which can be described as democracy in the metaphysical world.<br><br>The Internet will create an environment which will allow citizens of the world to acquire any knowledge about themselves and the universe around them, to express opinions, have the freedom to think and act at global level, in a global sense and global terms.<br>Any attempts to control the freedom of the individuals are doomed for failure. Perhaps this would explain why Communism as an “experiment” failed in Russia and why the Berlin Wall had to come down.<br>The Internet is not simply a protocol but the foundation on which the future generations will construct the new global structures, exchange ideas, conduct business and shape the destiny of the unified world.<br><br><b>Companys choosing not to participate on the Internet would be committing a suicide.</b></p> </section> <!-- /.three_fourth content--> <section class="one_fourth last"> <!-- /.widget --> <section class="widget"> <h3>Other Articles</h3> <ul class="menu"> <li><a href="/ChangingLandscape">Changing Landscape - Pharma Industry</a></li> <li><a href="/SalesForceEffectiveness">Sales Force Effectiveness</a></li> </ul> </section> <section class="widget"></section> <!-- /.widget --> <!-- /.widget --> <?php include("App_Includes/ContactPanel.php");?> <!-- /.widget --> </section> <!-- /.one_fourth --> </section> <!-- /.full_width --> <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
|
Настройка