mysql_query limit variabel ?
Marcel Sikkema
20/10/2008 21:25:00Code (php)
1
2
3
2
3
<?php
mysql_query("update loterij set lot_owner= '$_POST[lot_owner]' WHERE lot_owner=0 ORDER BY RAND() limit 5 ");
?>
mysql_query("update loterij set lot_owner= '$_POST[lot_owner]' WHERE lot_owner=0 ORDER BY RAND() limit 5 ");
?>
Hoe kan ik de limit variabel maken door een invoer die wordt gegeven van een form of moet ik dan een ander optie gebruiken ?
PHP hulp
24/11/2024 08:12:34Tikkes C
20/10/2008 21:37:00Jan Koehoorn
20/10/2008 21:43:00En altijd controleren. Stel dat je het via de url doet, dus via GET, dan kan de bezoeker alles invoeren wat hij/zij wil. Dus:
Code (php)
1
2
3
4
5
2
3
4
5
<?php
if (isset ($_GET['limit']) && ctype_digit ($_GET['limit'])) {
// query samenstellen
}
?>
if (isset ($_GET['limit']) && ctype_digit ($_GET['limit'])) {
// query samenstellen
}
?>
Marcel Sikkema
20/10/2008 21:52:00Code (php)
1
2
3
2
3
<?php
mysql_query("update loterij set lot_owner= '$_POST[lot_owner]' WHERE lot_owner=0 ORDER BY RAND() limit ".$limit." ");
?>
mysql_query("update loterij set lot_owner= '$_POST[lot_owner]' WHERE lot_owner=0 ORDER BY RAND() limit ".$limit." ");
?>
:D dit werkt zo dankje