Hallo Community, ich habe ein kleines problem mit meinem Rareshop also er gibt nichts aus wenn man was kaufen möchte
PHP
<?php
require('templates/header_shop.php')
?>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<style>
/* Hier ist viel CSS */
</style>
<!-- Seiten Anfang -->
<div class="main">
<!-- Text -->
<div class="newsbox" style="width: 500px; margin-top:10px; margin-right:10px;">
<h1 align="center">Kauf dir schnell ein Rare..</h1>
<p style="font-weight: 400;">kfe0ef00efjfejfejfej9ojofejoefjofe</p>
</div>
<!-- Shop -->
<div class="newsbox" style="width: 450px; text-align:center;margin-top:10px;">
<h1>Rareshop</h1>
<div style="margin-top: 10px;">
<div id="collectible-current-content" class="clearfix" style="height:250px;">
<?php
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM cms_rare ORDER BY item_id DESC LIMIT 1"));
if(isset($_POST['Rareid'])) // Wenn user rare kaufen will
{
if($row['item_id'] == $_POST['Rareid']) // Überprüfung der ID
{
if($row['cost_credits'] <= $user->credits) // Überprüfung der Taler
{
if($row['buy_limit'] > 0) //Überprüfung des bestandes
{
mysql_query("UPDATE cms_rare SET buy_limit = buy_limit-1 WHERE item_id = '".$row['item_id']."'");
mysql_query("UPDATE users SET credits = credits-".$row['cost_credits']." WHERE id = '".$user->id."'");
$core->MUS('updatecredits', $user->id);
$core->MUS('giveitem', "".$user->id." ".$row['item_id']." ".$row['item_page_id']." Limitierte Rare ".$row['item_name']." gekauft - Viel Spaß beim Handeln.");
$user->credits = $user->credits-$row['cost_credits'];
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM cms_rare ORDER BY item_id DESC LIMIT 1"));
}
else
{
//Wenn die Rare ausverkauft ist
}
}
else
{
//Wenn der User nicht genug Taler hat
}
}
}
?>
<div id="collectibles-current-img" style="background-image: url(<?php echo $row['img']; ?>); margin-right:250px;margin-top:50px;"></div>
<div style="float:right; margin-right:40px;margin-top:-80px;">
<h4><?php echo HoloText($row['item_name']); ?></h4>
<p>Noch <b><?php echo $row['buy_limit']; ?></b> von <b><?php echo $row['limit']; ?></b> Möbelstücke verfügbar!<br /></p>
<p class="last">Preis: <b><?php echo $row['cost_credits']; ?></b> Taler!</p><br />
</div>
<p id="collectibles-purchase">
<?php if($row['buy_limit'] > 0){ ?>
<form action="" method="POST">
<input type="hidden" name="Rareid" value="<?php echo $row['item_id']; ?>"/>
<td class='tablerow1'><input type="submit" value="Möbelstück kaufen »" style="margin: 5px 0 0 0; float: right; margin-top: -30px;"></td>
</form>
<?php } else { ?>
<td class='tablerow1'><a class="new-button dark-button collectibles-purchase-current"><b>Ausverkauft</b><i></i></a></td>
<?php } ?>
</p>
</div>
</div>
</div>
</div>
Alles anzeigen
Ich denke das mir einer von euch helfen kann bei meinen Problem
Mfg.
Jimmy