aleminio Posted July 26, 2006 Share Posted July 26, 2006 logical, here is what i need to write:[code=php:0]Select * from $log where date = $date AND [ ( name1= $n1 AND name2 = $n2) OR (name1 = $n2 AND name2 = $n2)] [/code]how can i write it as php select command? Link to comment https://forums.phpfreaks.com/topic/15736-using-select-command/ Share on other sites More sharing options...
obsidian Posted July 26, 2006 Share Posted July 26, 2006 [quote author=aleminio link=topic=101981.msg404143#msg404143 date=1153943138]logical, here is what i need to write:[code=php:0]Select * from $log where date = $date AND [ ( $n1=name1 and $n2 =name2) OR ($n2=name1 and $n2 = name2) ] [/code]how can i write it as php select command? [/quote]where $date is in YYYY-MM-DD format:[code]<?php$sql = "SELECT * FROM $log WHERE date = '$date' AND ((name1 = '$n1' AND name2 = '$n2) OR (name1 = '$n2' AND name2 = '$n1'))";?>[/code] Link to comment https://forums.phpfreaks.com/topic/15736-using-select-command/#findComment-64291 Share on other sites More sharing options...
aleminio Posted July 26, 2006 Author Share Posted July 26, 2006 the date is Y n jand thanks. Link to comment https://forums.phpfreaks.com/topic/15736-using-select-command/#findComment-64292 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.