Forum Moderators: coopster
I have a wordpress blog whith a search and replace plugin that inserts strings into text using a "shortcode."
I am trying to use thie number_format function to reformat the numeric strings.
For example, if my shortcode represents the number 12345 and I want it to be formatted as $12,345 I am using this code ...
<?php
$new_num = $[shortcode]
$formatted_number = number_format($new_num, , ,',');
echo ('$' . $formatted_number);
?>
I get nothing.
What did I miss?
Thanks in advance,
Kirk