Echo content error

Hi,

This line:

$body->set('delivery_cost_num_format', echo $config['standard']);

Reads this error:

Parse error: syntax error, unexpected T_ECHO in /home/www/checkout/index.php on line 81

I cannot see what is wrong with the line?

Help appreciated.

Cheers,

Paul

$body->set(‘delivery_cost_num_format’, $config[‘standard’]);

You should not echo something within a parameter if you are already in php. Unexpected T_ECHO, remove “echo” :wink: