Jump to content

basic ad 2 ints from a db


makatak88

Recommended Posts

hello, still very new at this but here goes.

on the page that posts the form i have a hidden echo like so.

echo "<input type='hidden' name='price' value='$row[price]' />";

 

on the page that it posts to i have

 

$first_number = $dbh->quote($_REQUEST['price']);
$second_number = 20;
$sum_total = $first_number + $second_number;

$direct_text = 'The two variables added together = ';

print ($direct_text . $sum_total);

 

I get 20 as the result. any ideas?

 

also a couple more notes that may help:

 

datatype of price is int in db

if i echo out $first_number i get '45' not 45

if i try $newnumber = (int)$first_number;

echo $newnumber i get 0

 

cheers guys

Link to comment
https://forums.phpfreaks.com/topic/262802-basic-ad-2-ints-from-a-db/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.