Ik snap niet waarom ik steeds dit krijg
----------------------------------------------------------------------------------------
Warning: file_get_contents(): URL file-access is disabled in the server configuration in /home/www/crimtime.awardspace.com/creditsbellenb.php on line 2
Warning: file_get_contents(http://www.eurobellen.nl/bel/check.php?userid=tkillert&ebpin=0199): failed to open stream: no suitable wrapper could be found in /home/www/crimtime.awardspace.com/creditsbellenb.php on line 2
Onjuiste code!
----------------------------------------------------------------------------------------
Ik heb dit script gebruikt, wie weet waar de fout zit ??
----------------------------------------------------------------------------------------
<?php
$ebcheck = file_get_contents("http://www.eurobellen.nl/bel/check.php?test=uK+ts&userid=tkillert&ebpin=".$_GET['ebpin';]);
if($ebcheck!="OK") {
echo "Pincode validatie mislukt ($ebcheck)";
exit;
}
?>
include("_include-config.php");
if(! check_login()) {
header("Location: login.php");
exit;
}
mysql_query("UPDATE `[users]` SET `online`=NOW() WHERE `login`='{$data->login}'");
mysql_query("UPDATE `[users]` SET `credits`=`credits`+'250' WHERE `login`='{$data->login}'");
?>
<html>
<head>
<title>Belservice</title>
<link rel="stylesheet" type="text/css" href="css-v1.css">
</head>
<body style="; margin: 0px;">
<table align="center" width=100%>
<tr><td class="subTitle"><b>Belservice</b></td></tr>
<tr><td class="mainTxt">
Je hebt <b>250 credits</b>gekocht! Veel plezier ermee!
</td></tr>
</table><br>
</body>
</html>
----------------------------------------------------------------------------------------
1.176 views