 |

sagentic
User

Jul 20, 2008, 3:55 PM
Post #1 of 3
(396 views)
Shortcut
|
Is there any way to get one field to auto add itself to another field? <?php echo number_format($record['number1']) ?> + <?php echo number_format($record['number2']) ?>
|
|
|  |
 |

Dave
Staff
/ Moderator

Jul 20, 2008, 6:02 PM
Post #2 of 3
(381 views)
Shortcut
|
Try this: <?php echo number_format($record['number1'] + $record['number2']) ?> Let me know if that works for you. Dave Edis - Senior Developer interactivetools.com
|
|
|  |
 |

sagentic
User

Jul 20, 2008, 7:56 PM
Post #3 of 3
(369 views)
Shortcut
|
That works perfectly!
|
|
|  |
|