Page is a not externally linkable
calvinmicklefinger - 5:41 am on Sep 17, 2009 (gmt 0)
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 I get nothing. What did I miss? Thanks in advance,
Hi,
$new_num = $[shortcode]
$formatted_number = number_format($new_num, , ,',');
echo ('$' . $formatted_number);
?>
Kirk