Hallo erstmal,
Ich habe ein kleinens problehm mit diesem PHP Script
<?php
// Make a MySQL Connection
mysql_connect("localhost", "wlzeadmin", "wlze098");
mysql_select_db("lecker");
$paypal = mysql_query('SELECT re FROM restaurante WHERE re==1 ') ;
?>
Der sich auf diesen Paypal script auswirken soll
<?php
// Make a MySQL Connection
mysql_connect("localhost", "wxxxxxx", "wxxxxxx");
mysql_select_db("lecker");
$paypal = mysql_query('SELECT re FROM restaurante WHERE re==1 ') ;
| | |
Tabellenspalte Tabelle Bedingung (da liegt glaub ich das problehm)
?>
<?php if (! empty($paypal)): ?>
<div><p align="center"><br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="<?php print $email; ?>" >
<input type="hidden" name="item_name" value="<?php print $gericht->name; ?>" >
<input type="hidden" name="amount" value="<?php print $gericht->rate; ?>">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="no_note" value="">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="bn" value="IC_Beispiel">
<input type="image" src="https://www.paypal.com/de_DE/i/btn/x-click-but01.gif" name="submit" alt="Bezahlen Sie mit PayPal - schnell, einfach und sicher!" />
</form></p></div></div>
<?php endif; ?>
Jetzt soll es abfragen ob $paypal in der Datenbank auf 1 steht oder nicht.
Leider tut es genau dies nicht.