[PHP] Re: Multiplication of double

2003-01-19 Thread Bobby Patel
It seems you have register globals set to off, thus when you have variables $price and $qty they are just fresh variables, you might try $HTTP_POST_VARS['price'] and $HTTP_POST_VARS['qty'] (don't forget the single quote). "Cesar Aracena" <[EMAIL PROTECTED]> wrote in message 01c2bfeb$cecbd5c0$

[PHP] Re: Multiplication of double

2003-01-19 Thread Foong
have you try echo $price and $qty separately to check if they are correct? If they are correct, can you post you code? so we can take a look. Foong Cesar Aracena <[EMAIL PROTECTED]> wrote in message 01c2bfeb$cecbd5c0$7a00a8c0@NOTEBOOK">news:01c2bfeb$cecbd5c0$7a00a8c0@NOTEBOOK... Hi al