Forum Moderators: coopster
I happen to have to debug this page, and it has a querry out of database like this
$selectSQL="SELECT * FROM recentipo_item_master WHERE insertdate<= ".$fromdate." AND insertdate>=".$todate ;
I want to sort the result by a collumn in the database named Issue, so my code is
$selectSQL="SELECT * FROM recentipo_item_master WHERE insertdate<= ".$fromdate." AND insertdate>=".$todate ORDER BY issue ASC ; But i got error back, Can anyone please help me?