01/09/2009, 15:28
|
| | Fecha de Ingreso: enero-2009
Mensajes: 9
Antigüedad: 16 años Puntos: 0 | |
Respuesta: modificar script bueno este es el codigo del index.php
por ejemplo en ese codigo quiero ponerle por ejemplo mi logo y ponerle mis estadisticas en español la seccion de ver los anuncios en español osea los botones
<?
session_start();
if ($_GET["action"]=="logout") {
if(isset($_COOKIE["usNick"]) && isset($_COOKIE["usPass"]))
{
$HTTP_COOKIE_VARS["usNick"] = "";
setcookie(usNick,"x",time() - 7776000);
$HTTP_COOKIE_VARS["usPass"] = "";
setcookie(usPass,"x",time() - 7776000);
header("Location: index.php");
exit();
}
}
include "config.php";
global $c,$loggedin;
include "data.php";
global $config;
include "funciones.php";
include "prices.php";
?>
<? include "header.php"; ?>
<div id="main2">
<div class="heading"><font color="#787878">Biembenido </font><font color="#787878"><?=$config["site_name"]?>!</font></div>
<p>At <?=$config["site_name"]?>, you get paid to click on ads and visit websites.<br />
The process is easy! You simply click a link and view a website for <strong>30</strong> seconds to earn money. You can earn even more by referring friends. You'll get paid $<?=$click3["price"];?> for each website you personally view and $<?=$referalclick3["price"];?> for each website your referrals view. Payment requests can be made every day and are processed through Alertpay. The minimum payout is $10.00.</p>
<p><strong>Earnings Example</strong><br>
<font color="#B2CC80">»</font> You click 10 ads per day =
$<?=$click3["price"] * 10;?><br>
<font color="#B2CC80">»</font> 20 referrals click 10 ads per day = $<?=$referalclick3["price"] * 10 * 20;?><br>
<font color="#B2CC80">»</font> Your daily earnings = $<?=($click3["price"] * 10 + $referalclick3["price"] * 10 * 20) * 1;?><br>
<font color="#B2CC80">»</font> Your weekly earnings = $<?=($click3["price"] * 10 + $referalclick3["price"] * 10 * 20) * 7;?><br>
<font color="#B2CC80">»</font> Your monthly earnings =
<u><b>$<?=($click3["price"] * 10 + $referalclick3["price"] * 10 * 20) * 30;?></b></u><p>The above example is based only on 20 referrals and 10 daily
clicks. Some days you will have more clicks available, some
days you will have less. What if you had more referrals?
What if there were more ads available?<p>
<a href="register.php">Join now and receive a $0.05
Sign-up Bonus</a><p>
Thousands of satisfied members that have received
their payment. <a href="proof_of_payments.php">Proof
of Payments</a>.<p>
<b>Availability Limited!<br>
</b>Hard to find active members? Why not let us do the
referring for you? We have a limited amount of
un-referred members left for sale. Packages with
<a href="purchase5.php">5</a>,
<a href="purchase35.php">35</a>,
<a href="purchase100.php">100</a> and
<a href="purchase500.php">500</a> referrals are available now.</td>
</div>
<div id="sidebar">
<div class="heading">
<font color="#787878">Breaking News</font></div>
<p>
<font size="1">
<?=$config["news"]?>
</font>
<br>
</div>
<!-- content-wrap ends here -->
</div>
<?
showFooter();
?> |