foutje
Ik heb een doneerscript gemaakt maar hij voort de database query's niet uit.
Dit is het scirpt.
Zouden jullie misschien kunnen kijken wat er fout aan is?
Het zijn maar 2 query's
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<html>
<head>
<title>Drugsworld</title>
<link rel="stylesheet" type="text/css" href="style.php">
<?
include('config.php');
include ("class.ivr.php");
$rtlo = 38455; // Replace with your TargetPay layoutcode
$ct = PC; // Replace with your TargetPay layoutcode
$country = 31; // Replace with country code of the end-consumer
$adult = 0; // Adult service? Replace with 1
$tariff = 100; // Tariff in eurocents (e.g. 130 means € 1,30 per call)
$myIVR = new IVR ($rtlo, $country, $ct);
if (!$_GET["step"]) {
$result = $myIVR->PreparePayPerCall ($tariff, $adult);
if (!$result) { die ("Er is een fout opgetreden: ".$myIVR->error); }
$returnURL = "?step=2&payline=".urlencode($myIVR->payline)."&paycode=".urlencode($myIVR->paycode);
$dbres = mysql_query("SELECT *,UNIX_TIMESTAMP(`pc`) AS `pc`,UNIX_TIMESTAMP(`transport`) AS `transport`,UNIX_TIMESTAMP(`bc`) AS `bc`,UNIX_TIMESTAMP(`slaap`) AS `slaap`,UNIX_TIMESTAMP(`kc`) AS `kc`,UNIX_TIMESTAMP(`start`) AS `start`,UNIX_TIMESTAMP(`crime`) AS `crime`,UNIX_TIMESTAMP(`ac`) AS `ac` FROM `users` WHERE `login`='{$_SESSION['login']}'");
$data = mysql_fetch_object($dbres);
$i = $data->id;
echo "<table width=100% cellspacing=0 cellpadding=1 align=center><tr>
<td class=subTitle>Belcredits kopen.</td></tr><tr>
<td class=mainTxt align=center>Bel naar <b>$myIVR->payline</b> (€ 1,30 per gesprek) en toets ";
echo "de code <b>$myIVR->paycode</b> in.<br><br>";
echo "<a href=\"$returnURL\">Klik hier na het bellen...</a>";
} else {
$result = $myIVR->CheckPayment ($_GET["paycode"], $_GET["payline"]);
if (!$result) {
echo "<table width=100% cellspacing=0 cellpadding=1 align=center><tr>
<td class=subTitle>Doneren</td></tr><tr>
<td class=mainTxt align=center>De betaling is nog niet afgerond!<br><br>";
echo "<a href=\"javascript: history.go(-1);\">Klik hier om terug te gaan...</a>";
} else {
$code = $_GET['betaalcode'];
$id = $_GET['parameter'][1];
$dbres = mysql_query("SELECT * FROM `users` WHERE `id`='{$id}'");
$data = mysql_fetch_object($dbres);
mysql_query("UPDATE `users` SET `belcredits`=`belcredits`+'100' WHERE `login`='{$data->login}'");
mysql_query("INSERT INTO `messages`(`time`,`from`,`to`,`subject`,`message`) values(NOW(),'Notificatie','{$data->login}','Donatie','Bedankt voor uw donatie aan Drugsworld.
Er zijn 100 credits aan uw accound toegevoegd.')") or die(mysql_error());
echo"</table><table width=100% cellspacing=0 cellpadding=1 align=center><tr>
<td class=subTitle>Belcredits kopen.</td></tr><tr>
<td class=mainTxt align=center>Bedankt voor uw donatie aan Drugsworld.<br><br>Er zijn 100 credits aan uw accound toegevoegd.";
}
}
echo "";
?>
<head>
<title>Drugsworld</title>
<link rel="stylesheet" type="text/css" href="style.php">
<?
include('config.php');
include ("class.ivr.php");
$rtlo = 38455; // Replace with your TargetPay layoutcode
$ct = PC; // Replace with your TargetPay layoutcode
$country = 31; // Replace with country code of the end-consumer
$adult = 0; // Adult service? Replace with 1
$tariff = 100; // Tariff in eurocents (e.g. 130 means € 1,30 per call)
$myIVR = new IVR ($rtlo, $country, $ct);
if (!$_GET["step"]) {
$result = $myIVR->PreparePayPerCall ($tariff, $adult);
if (!$result) { die ("Er is een fout opgetreden: ".$myIVR->error); }
$returnURL = "?step=2&payline=".urlencode($myIVR->payline)."&paycode=".urlencode($myIVR->paycode);
$dbres = mysql_query("SELECT *,UNIX_TIMESTAMP(`pc`) AS `pc`,UNIX_TIMESTAMP(`transport`) AS `transport`,UNIX_TIMESTAMP(`bc`) AS `bc`,UNIX_TIMESTAMP(`slaap`) AS `slaap`,UNIX_TIMESTAMP(`kc`) AS `kc`,UNIX_TIMESTAMP(`start`) AS `start`,UNIX_TIMESTAMP(`crime`) AS `crime`,UNIX_TIMESTAMP(`ac`) AS `ac` FROM `users` WHERE `login`='{$_SESSION['login']}'");
$data = mysql_fetch_object($dbres);
$i = $data->id;
echo "<table width=100% cellspacing=0 cellpadding=1 align=center><tr>
<td class=subTitle>Belcredits kopen.</td></tr><tr>
<td class=mainTxt align=center>Bel naar <b>$myIVR->payline</b> (€ 1,30 per gesprek) en toets ";
echo "de code <b>$myIVR->paycode</b> in.<br><br>";
echo "<a href=\"$returnURL\">Klik hier na het bellen...</a>";
} else {
$result = $myIVR->CheckPayment ($_GET["paycode"], $_GET["payline"]);
if (!$result) {
echo "<table width=100% cellspacing=0 cellpadding=1 align=center><tr>
<td class=subTitle>Doneren</td></tr><tr>
<td class=mainTxt align=center>De betaling is nog niet afgerond!<br><br>";
echo "<a href=\"javascript: history.go(-1);\">Klik hier om terug te gaan...</a>";
} else {
$code = $_GET['betaalcode'];
$id = $_GET['parameter'][1];
$dbres = mysql_query("SELECT * FROM `users` WHERE `id`='{$id}'");
$data = mysql_fetch_object($dbres);
mysql_query("UPDATE `users` SET `belcredits`=`belcredits`+'100' WHERE `login`='{$data->login}'");
mysql_query("INSERT INTO `messages`(`time`,`from`,`to`,`subject`,`message`) values(NOW(),'Notificatie','{$data->login}','Donatie','Bedankt voor uw donatie aan Drugsworld.
Er zijn 100 credits aan uw accound toegevoegd.')") or die(mysql_error());
echo"</table><table width=100% cellspacing=0 cellpadding=1 align=center><tr>
<td class=subTitle>Belcredits kopen.</td></tr><tr>
<td class=mainTxt align=center>Bedankt voor uw donatie aan Drugsworld.<br><br>Er zijn 100 credits aan uw accound toegevoegd.";
}
}
echo "";
?>
Mvg,
Tim Kampherbeek
Gewijzigd op 01/01/1970 01:00:00 door Tim Kampherbeek
en verzin een betere topictitel