formulas with Mysql dynamic texts

Thread Solved

Join Date: Oct 2007
Posts: 34
Reputation: dragon@dragon64 is an unknown quantity at this point 
Solved Threads: 0
dragon@dragon64 dragon@dragon64 is offline Offline
Light Poster

formulas with Mysql dynamic texts

 
0
  #1
Mar 21st, 2009
i am trying to mutiply and add 2 dnamic texts on a php form, but i do not seem to get the reply, but i get the following results

"sum (4 + 1)"

This is the code that i typed in (<?php echo $row_standings['w']; ?>+<?php echo $row_standings['d']; ?>
The 4 is the result of `w` and 1 is the result of `d`

I would like the that two figures add up on the screen, i also need to multiply other dynamice texts.
Reply With Quote Quick reply to this message  
Join Date: Aug 2007
Posts: 801
Reputation: darkagn has a spectacular aura about darkagn has a spectacular aura about darkagn has a spectacular aura about 
Solved Threads: 110
darkagn's Avatar
darkagn darkagn is offline Offline
Practically a Posting Shark

Re: formulas with Mysql dynamic texts

 
0
  #2
Mar 21st, 2009
This looks to be more of a PHP question than a MySQL question, but I think I can help. I would assign the results to variables in php and then simply add them. Like so:
  1. $w = $row_standings['w'];
  2. $d = $row_standings['d'];
  3. $sum = $w + $d;
  4. echo "$w + $d = $sum";

This can work with multiplication too, just change the + to a *.

Hope this helps,
darkagn
There are no stupid questions, only those too stupid to ask for help.
echo is a web developer's best friend.
Reply With Quote Quick reply to this message  
Join Date: Oct 2007
Posts: 34
Reputation: dragon@dragon64 is an unknown quantity at this point 
Solved Threads: 0
dragon@dragon64 dragon@dragon64 is offline Offline
Light Poster

Re: formulas with Mysql dynamic texts

 
0
  #3
Mar 21st, 2009
thank your reply was very helpful. solved my issue
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Other Threads in the MySQL Forum
Thread Tools Search this Thread



Tag cloud for MySQL
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC