Lid |
|
Heey
Ik heb zo'n navigatie-script (Vorige [1] [2] [3] Volgende)
Die heb ik gecombineerd met een zoekmachine.
Nu gaat het op pagina 1 wel goed, maar zodra ik verder ga naar pagina 2, krijg ik ineens een error:
Citaat: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIKE '%%'' at line 1
Dat gaat om dit stukje script:
<?php
$zoekveld=$_POST['zoekveld'];
$artistsong=$_POST['artistsong'];
$selectzoek=mysql_query("SELECT * FROM ringtones WHERE ".$artistsong." LIKE '%".$zoekveld."%'") or die(mysql_error());
$aantalzoek=mysql_num_rows($selectzoek);
<?php $zoekveld=$_POST['zoekveld']; $artistsong=$_POST['artistsong'];
Ik heb al geprobeerd om $zoekveld en $artistsong in een sessie te zetten ed, maar niks lukt:'(
|