| 
 Posted by Captain Paralytic on 11/23/06 14:48 
Kenoli wrote: 
> Is there a way to accomplish something like the "WHERE" syntax from SQL 
> in php?  For example an equivalent to the following, which I know is 
> not proper php syntax. 
> 
> foreach ($var as $key => $value WHERE $key != '3') { 
> echo "$key is $value"; 
> } 
> 
> or 
> 
> implode (",", $_POST WHERE $_POST[name] != 'post'); 
> 
> I keep wanting to be able to do things like this. 
> 
> --Kenoli 
 
foreach ($var as $key => $value) { 
if $key != '3'  
  echo "$key is $value";
 
[Back to original message] 
 |