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? Quote 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] Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/15736-using-select-command/#findComment-64292 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.