Jump to content

${$var} help


TaosBill

Recommended Posts

<?

$headers = 'company_id,emp_id,approver_login,approver_passwrd,approver_email,hrmanager_emp_id,ssn,hire_date,perf_rating_date,emp_status,hourly_rate,incentive_pay,locn1,salary_eff_date';

$upd_columns = explode(",", $headers);

$comma = '';

foreach($upd_columns as $val) {

  if ( ($val == 'company_id') OR ($val == 'emp_id')){

      // no update on the primary keys

  }else { 

    $sql .= $comma . $val . " = '" . ${$val} . "'";

    $comma = ',';

  }       

}

 

echo $sql."<br>";

?>

Displays this:

approver_login = ''...removed to save space..,locn1 = '',salary_eff_date = ''

${$val} didn't work

Can someone tell me why?  Thanks

 

 

Link to comment
Share on other sites

A better option...

 

foreach($upd_columns as $k => $v) {
  if (($k == 'company_id') OR ($k == 'emp_id')) {
      // no update on the primary keys
  }else {  
    $sql .= $comma . $k . " = '" . $v . "'";
    $comma = ',';
  }         
}

Link to comment
Share on other sites

Edit: Pretty much what sasa posted.

 

For the first code to work, there would need to be variables named $company_id, $emp_id, $approver_login ... $salary_eff_date with values in them. If you turn on full php error reporting, you will get notice error messages if those variables don't exist.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.