MySQL interesse |
|
Beste mensen, ik heb op twee servers hetzelfde script om gegevens uit een url te halen:
<?php $connection = mysql_connect("localhost", "database", "password");
if (!$connection){
die("Could not connect to the database: <br/>" . mysql_error());
}
$db_select = mysql_select_db("tabel");
if (!$db_select) {
die ("could not select the database: <br />". mysql_error());
}
$query = "SELECT * FROM part WHERE landplaats = \"$welke\"";
$result = mysql_query( $query );
if (!$result){
die ("Could not query the database: <br />". mysql_error());
}
?>
<?php $connection = mysql_connect("localhost", "database", "password"); if (!$connection){ } if (!$db_select) { } $query = "SELECT * FROM part WHERE landplaats = \"$welke\""; if (!$result){ } ?>
Ik roep het op met:
http://www.***.nl/test1.php?welke=goes
Hoe kan het dat het bij de ene server wel werkt, en bij de andere server niet?
|