Silverslide Posted April 20, 2006 Share Posted April 20, 2006 I want the query to only select the item with id 1 till 10how do i do thatSELECT * FROM news WHERE id='....' ?please help me Link to comment https://forums.phpfreaks.com/topic/7989-query-help/ Share on other sites More sharing options...
sanfly Posted April 20, 2006 Share Posted April 20, 2006 [!--quoteo(post=366986:date=Apr 21 2006, 08:10 AM:name=Silverslide)--][div class=\'quotetop\']QUOTE(Silverslide @ Apr 21 2006, 08:10 AM) [snapback]366986[/snapback][/div][div class=\'quotemain\'][!--quotec--]I want the query to only select the item with id 1 till 10how do i do thatSELECT * FROM news WHERE id='....' ?please help me[/quote]Maybe...SELECT * FROM news WHERE id >= '1' AND id <= '10'or to make it more dynamic$min = 1;$max = 10;SELECT * FROM news WHERE id >= '$min' AND id <= '$max' Link to comment https://forums.phpfreaks.com/topic/7989-query-help/#findComment-29138 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.