On my website there is a clock with the wrong time and date in the top right hand corner. HELP i want it removed! My site is youmakeiteasy.co.cc please help me or tell me how to remove the clock and date from the top left corner! the index.php is BELOW but it shows on all PAGES!!! <?php include ('header.php'); ?> <h3>Join Now and Get Paid to Visit Websites! NO SCAM! JUST FREE! </h3> <p><img class="img-left" src="images/users.png" width="48" height="48" alt="Image" /> At <? include('sitename.php'); ?>, you get paid to click on ads and visit websites. The process is easy! You simply click a link and view a website for a few seconds to earn money. You don't need any skills. This is because all you need to do is visit the sites we provide you with. <span class="highlight">You can earn even more by referring friends.</span> Payment requests can be made every day and are processed through PayPal. The minimum payout is $<? require ('config.php'); $sql = "SELECT * FROM tb_config WHERE item='payment' and howmany='1'"; $result = mysql_query($sql); $row = mysql_fetch_array($result); echo $row["price"]; mysql_close($con); ?></p> <p align="right"><?php echo "<a href=\"register.php?r=".$elref."\">";?>Join Now!</a></p> <h3>Advertise Here on (sitename.php) And get Traffic!!</h3> <p><img class="img-left" src="images/money.gif" width="48" height="48" alt="Image" /> Setting up and displaying your link for <? include('sitename.php'); ?> members to visit is fast and simple. We charge $<? require ('config.php'); $sql = "SELECT * FROM tb_config WHERE item='hits' and howmany='1000'"; $result = mysql_query($sql); $row = mysql_fetch_array($result); echo $row["price"]; mysql_close($con);?> per <? require ('config.php'); $sql = "SELECT * FROM tb_config WHERE item='hits' and howmany='1000'"; $result = mysql_query($sql); $row = mysql_fetch_array($result);echo $row["howmany"]; mysql_close($con);?> member visits and each visit will last at least 20 seconds. Outside visits are unlimited and included within the price. We will review your website and will have it active within 24 hours. You don’t need an account to order advertising at <?php include ('sitename.php');?>, you simply need to complete the form then pay the fee. If you would like a large package then please feel free to contact us. We will review your website within just a few hours or less. But will NOT accept illegal or adult material neither the use of frame breakers.</p> <p align="right"><?php echo "<a href=\"advertise.php?r=".$elref."\">";?>Read More...</a></p> <? require ('config.php'); $sqlzdu = "SELECT * FROM tb_config WHERE item='referalclick' and howmany='1'"; $resultzdu = mysql_query($sqlzdu); $myrowzdu = mysql_fetch_array($resultzdu); $elprecioref=$myrowzdu["price"]; $sqlzduz = "SELECT * FROM tb_config WHERE item='click' and howmany='1'"; $resultzduz = mysql_query($sqlzduz); $myrowzduz = mysql_fetch_array($resultzduz); $elprecioa=$myrowzduz["price"]; $elprecio=$elprecioa*10; $cien=$elprecioref*100*10; $daily=$elprecio+$cien; $monthly=$daily*30; $yearly=$monthly*12; mysql_close($con); ?> <p> </p> <blockquote><h4>How much can I earn?</h4> If you click 10 ads a day, you refer 100 members who click 10 ads a day, you could earn up to $<?php echo $monthly?> monthly, that means $<?php echo $yearly ?> yearly. With more referrals or ads the earning potential is endless.</blockquote> <?php include ('footer.php'); ?>
You'll need to provide the PHP code for your index.php page. Post the code here and I'll take a look.
It seems like it's appearing on all your pages. Can you also post the code for header.php as I suspect it's probably in there.
**HEADER.PHP** 1:42 AM 5/29/2002<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta name="description" content="Make Money Online for Free and Advertise on Line Freee" /> <meta name="keywords" content="money,make money,cash,5.00, advertise" /> <meta name="owner" content="Shawn Abrams" /> <meta name="copyright" content="2008" /> <meta name="author" content="Shawn Abrams" /> <meta name="rating" content="General" /> <meta name="revisit-after" content="7 days" /> <link rel="stylesheet" type="text/css" media="screen,projection,print" href="./css/style.css" /> <title><?php include('sitename.php');?> - Earn Money In Seconds!!</title> </head> <body> <div id="maincontainer"> <?php include('funciones.php'); $elref=limpiar($_GET["r"]); ?> <div id="headline1"> <a href="index.php"><div class="title"><?php include('sitename.php');?></div></a> <span class="subtitle">Earn Money In Seconds!</span> </div> <?php include('menu.php');?> <center><a href="http://youmakeiteasy.ultra-board.co.cc/">Visit our Community Forum for Help and Support !!</a></center> <div id="navtoplistline"> </div> <div id="contentwrapper"> <div id="maincolumn"> <div class="text">
It appears right before the HTML headers when you view the source code. Without seeing the PHP code for header.php as well, it's impossible to find out where it's coming from.
Ignore my previous post. You were too quick for me. Change the first line of header.php 1:42 AM 5/29/2002<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Code (PHP): to <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Code (PHP): and it should be working.