php - Footer Repeats Itself -
i'm designing this website , need .php communicate database , start countdown clocks (which aren't yet). page .html , perfect, since changed .php reason footer keeps repeating itself. code fine on editor, i'll load page, reload file on editor , code somehow appears there on own! right there no php code whatsoever, merely changed file's extension. if visit same url .html version, you'll see fine. causing this?
thanks in advance help!
edit:
entire html code:
<!doctype html> <html> <head> <title>aqua</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <link href="http://fonts.googleapis.com/css?family=source+sans+pro:300,400,700,900,300italic" rel="stylesheet" /> <script src="js/jquery-1.8.3.min.js"></script> <script src="css/5grid/init.js?use=mobile,desktop,1000px&mobileui=1&mobileui.theme=none&mobileui.titlebaroverlaid=1&viewport_is1000px=1060"></script> <script src="js/jquery.dropotron-1.2.js"></script> <script src="js/init.js"></script> <noscript> <link rel="stylesheet" href="css/5grid/core.css" /> <link rel="stylesheet" href="css/5grid/core-desktop.css" /> <link rel="stylesheet" href="css/5grid/core-1200px.css" /> <link rel="stylesheet" href="css/5grid/core-noscript.css" /> <link rel="stylesheet" href="css/style.css" /> <link rel="stylesheet" href="css/style-desktop.css" /> </noscript> <!--[if lte ie 8]><link rel="stylesheet" href="css/ie8.css" /><![endif]--> <!-- photo gallery stuff --> <link rel="stylesheet" href="css/slideshow/slideshow.css"> <style> .slideshow { margin-left: 24.45%; } </style> <script src="js/mootools-1.3.2-core.js"></script> <script src="js/mootools-1.3.2.1-more.js"></script> <script src="js/slideshow.js"></script> <script> window.addevent('domready', function(){ var data = { 'pic07.jpg': {/*no captions, thumbnails or anything*/}, 'pic06.jpg': {}, 'pic10.jpg': {}, 'pic02.jpg': {}}; new slideshow('slideshow', data, { controller: false, thumbnails: false, loader: false, height: 400, width: 600, hu: 'images/', transition: 'back:in:out'}); }); </script> <!--end--> </head> <body class="homepage"> <!-- header wrapper --> <div id="header-wrapper"> <div class="5grid-layout"> <div class="row"> <div class="12u"> <!-- header --> <section id="header"> <!-- logo --> <img class="logo" src="images/aqua.jpg"> <!-- nav --> <nav id="nav" class="mobileui-site-nav"> <ul> <li class="current_page_item"><a href="index.html">home</a></li> <li><a href="photos.html">photos</a></li> <li><a href="videos.html">videos</a></li> <li><a href="store.html">store</a></li> <li><a href="about.html">about us</a></li> <li><a href="contact.php">contact</a></li> </ul> </nav> </section> </div> </div> <div class="row"> <div class="12u"> <!-- banner --> <section id="banner"> <div id="slideshow" class="slideshow"></div> </section> </div> </div> <div class="row"> <div class="12u"> <!-- intro --> <section id="intro"> <div class="actions"> <a href="#" class="button button-big">get started</a> <a href="#" class="button button-alt button-big">learn more</a> </div> </section> </div> </div> </div> </div> <!-- footer wrapper --> <div id="footer-wrapper"> <!-- footer --> <section id="footer" class="5grid-layout"> <div class="row"> <div class="4u"> <section> <header> <h2>links</h2> </header> <ul class="divided"> <li><a href="events.php">events/tickets</a></li> <li><a href="photos.html">photos</a></li> <li><a href="videos.html">videos</a></li> <li><a href="store.html">store</a></li> <li><a href="about.html">about us</a></li> <li><a href="contact.php">contact</a></li> </ul> </section> </div> <div class="4u"> <section> <header> <h2>connect us</h2> </header> <ul class="social"> <li class="facebook"><a href="#" class="icon48 icon48-1">facebook</a></li> <li class="twitter"><a href="http://twitter.com/n33co" class="icon48 icon48-2">twitter</a></li> </ul> <ul class="contact"> <li> <h3>address</h3> <p> aqua, llc<br /> 39 old ridgebury road<br /> danbury, ct 06810 </p> </li> <li> <h3>phone</h3> <p>(800) 000-0000</p> </li> </ul> </section> </div> </div> <div class="row"> <div class="12u"> <!-- copyright --> <div id="copyright"> <ul class="links"> <li>© aqua, llc</li> <li>images: <a href="http://facebook.com/dreametrydoodle">dreametry doodle</a> + <a href="http://iconify.it">iconify.it</a></li> <li>design: <a href="http://html5up.net">html5 up!</a> + <a href="http://daytaro.com">daytaro</a></li> </ul> </div> </div> </div> </section> </div> </body> </html> it's repeated awkwardly after that. might ftp server, use koding (don't ask) , it's connected server via ftp. tried using filezilla (didn't delete files before re-uploading) didn't anything.
make sure delete file before uploading it. ftp clients write on code...
Comments
Post a Comment