Jump to content

array from while loop


phpretard

Recommended Posts

I am trying to form an array from thre value of $cost.

 

 

$result = mysql_query("SELECT * FROM table ");

while($row = mysql_fetch_array($result))
  {
  $cost=$row['cost'];
  }

 

$a=array(SOMTHING HERE);

 

any thoughts?

 

 

Link to comment
Share on other sites

Very close

<?php
$result = mysql_query("SELECT * FROM table ");
$cost = array();
while($row = mysql_fetch_array($result))
{
  $cost[] =$row['cost'];
}
?>

 

i normally do this (may not work on yours)

<?php
$result = mysql_query("SELECT * FROM table ");
$cost = array();
while($row = mysql_fetch_array($result))
{
  $cost[$row['uID']] =$row['cost']; //uID = my unique id
}
?>

Link to comment
Share on other sites

On that note ... I may be approaching this wrong...

 

I am looking to add all the $cost together.

 

$result = mysql_query("SELECT * FROM table ");

while($row = mysql_fetch_array($result))
  {
  $cost=$row['cost'];
  }

 

 

$cost has as many values that are in the DB.  I just want to take the total of all the rows and echo it out.

 

 

Link to comment
Share on other sites

not sure what you mean now..

<?php

$result = mysql_query("SELECT * FROM table ");
$cost = 0;
while($row = mysql_fetch_array($result))
{
  $cost=$cost + $row['cost'];
}
echo $cost;
?>

or

<?php

$result = mysql_query("SELECT *, SUM(cost) as total FROM table ");
$cost = 0;
while($row = mysql_fetch_array($result))
{
  echo "total = ".$row['total'];
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.