How can I write this if condition
in switch
method?
if( $k != \'pg_id\' && $k != \'pg_tag\' && $k != \'pg_user\' )
{
(Borrowing from a previous question which I believe spawned this one - A short-cut to update a table row in the database?)
$editable_fields = array(
'pg_url' ,
'pg_title' ,
...
);
/* These are the fields we will use the values of to match the tuple in the db */
$where_fields = array(
'pg_id' ,
'pg_tag' ,
'pg_user' ,
...
);
$form_values = array();
$sql_pattern = array();
foreach( $editable_fields as $k ){
if( $k != 'pg_id'
&& isset( $_POST[$k] ) ){
$form_values[$k] = $_POST[$k];
// NOTE: You could use a variant on your above code here, like so
// $form_values[$k] = set_variable( $_POST , $k );
$sql_pattern[] = "$k = ?";
}
}
$where_values = array();
$where_pattern = array();
foreach( $where_fields as $k ){
if( isset( $_POST[$k] ) ){
$where_values[$k] = $_POST[$k];
// NOTE: You could use a variant on your above code here, like so
// $form_values[$k] = set_variable( $_POST , $k );
$where_pattern[] = "$k = ?";
}
}
$sql_pattern = 'UPDATE root_pages SET '.implode( ' , ' , $sql_pattern ).' WHERE '.implode( ' , ' , $where_pattern );
# use the instantiated db connection object from the init.php, to process the query
$result = $connection->run_query($sql_pattern,array_merge(
$form_values ,
$where_values
));