Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
AMHE
New Member
New Member



Joined: Nov 02, 2004
Posts: 3

PostPosted: Tue Nov 02, 2004 10:09 am Reply with quote

Hi All,

I'm a bit new to php and I'm working on random recordsets for a shopping site. My random script works great and pulls info from my datatbases perfectly BUT i'm getting some weird stuff with my prices. For some reason my prices have extra 0's added to the end.

This is my code...
Code:


<?php require_once('Connections/petgiftshop.php'); ?>
<?php
mysql_select_db($database_petgiftshop, $petgiftshop);
$query_Recordset1 = "SELECT * FROM products";
$Recordset1 = mysql_query($query_Recordset1, $petgiftshop) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>

<body>

<?php $query = "SELECT * products";
$result = MYSQL_QUERY($query);
$randval = rand(0, mysql_num_rows($Recordset1) - 1);

$title = mysql_result($Recordset1, $randval, 27);
$image = mysql_result($Recordset1, $randval, 19);
$price2 = mysql_result($Recordset1, $randval, 13);
$price = mysql_result($Recordset1, $randval, 12);
$description = mysql_result($Recordset1, $randval, 30);
$id = mysql_result($Recordset1, $randval, 0);
echo strtolower($row_Recordset1['$image']);
print("<p class='headerbold'>$title</p>
<img src='http://www.petgiftshop.com/images/products/$image.jpg' width='100' height='100'>
<p class='copy'>$description</p>

<span class='copyboldheader'>Product Details</span>
<hr>
<span class='copybold'>Unit Price : <s>$$price2</s> <span class='copyboldred'>$$price</span> <br>
<a href='http://www.petgiftshop.com/index.php?p=product&id=$id' target='_blank' class='copy'>Te ll me more! </a>"

);
?>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>

And this is what I see....


ItaltrendFaux Leopard Coat for Dogs

<IMAGE>

The reverse side of this coat is Gold Discodot. We have just developed a new line of faux fur coats for dogs. They were designed in Italy where we have our origins, but are manufactured in Las Vegas inhighly specialized labs under our constant control. The materials have been accurately selected among the very best and the look is extremely close to real furs. The reverse material is the latest in design of high fashion for ladies. Our garments are reversible and extremely elegant on both sides. Each garment is accurately hand sewn in all detailsfor a quality look.
Product Details
------------------------------------------------------------------------
Unit Price : $0.00000 $88.00000 <-----Any idea why these are coming from?
Te ll me more!

Thanks in Advance
 
View user's profile Send private message
sixonetonoffun
Spouse Contemplates Divorce



Joined: Jan 02, 2003
Posts: 2496

PostPosted: Tue Nov 02, 2004 11:11 am Reply with quote

Use round() see php manual for more details.
$price="1.387678393";
$price=round($price, 2);
echo "$price";

_________________
[b][size=5]openSUSE 11.4-x86 | Linux 2.6.37.1-1.2desktop i686 | KDE: 4.6.41>=4.7 | XFCE 4.8 | AMD Athlon(tm) XP 3000+ | MSI K7N2 Delta-L | 3GB Black Diamond DDR
| GeForce 6200@433Mhz 512MB | Xorg 1.9.3 | NVIDIA 270.30[/size:2b8 
View user's profile Send private message
AMHE







PostPosted: Tue Nov 02, 2004 12:37 pm Reply with quote

That seems to be doing the same thing that simply placing a (float) after $price2= is doing.

It rounds off my prices and removes all the zeros. Ie...

a price of 47.50 is coming out 47.5

or a 1.00 is coming out 1

Any idea on how to keep the zeros on?

Using round ($price2, 2) is supposed to tell the script to keep 2 places after the decimal but it isn't working.
 
sixonetonoffun







PostPosted: Tue Nov 02, 2004 12:47 pm Reply with quote

What does the script that stores it do? And what is the result in the database of it when a price is stored? Ideally it should be stored in the format it is being displayed as. Maybe that would be a better place to start.
 
AMHE







PostPosted: Tue Nov 02, 2004 1:58 pm Reply with quote

I got it to work using:

$price2 = number_format($price2, 2, '.', '');
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©