Crew .NET |
|
mysql_connect("localhost","root","NXmrGq6G") or die(mysql_error());
Best om code die je post, te vrijwaren van paswoorden, ook al is het lokaal dat je test!
$res = mysql_query("SELECT * FROM `a_gebruikers` WHERE `{$_GET['kolom']}` LIKE `{$_GET['trefwoord']}`");
$res = mysql_query("SELECT * FROM `a_gebruikers` WHERE `{$_GET['kolom']}` LIKE `{$_GET['trefwoord']}`");
Sinds wanneer komen er accolades rond kolomnamen? Maak er eens dit van:
$res = mysql_query("SELECT * FROM a_gebruikers WHERE '".$_GET['kolom']."' LIKE '".$_GET['trefwoord']."' ");
$res = mysql_query("SELECT * FROM a_gebruikers WHERE '".$_GET['kolom']."' LIKE '".$_GET['trefwoord']."' ");
En als je een foutmelding krijgt dat de kolom "amber" niet bestaat, is dat terecht want ik zie nergens in je structuur een kolom die "amber" heet! |