Page 3 of 3 FirstFirst 123
Results 21 to 23 of 23
  1. #21
    Join Date
    Sep 2008
    Location
    UK
    Posts
    3,670
    Tokens
    0

    Latest Awards:

    Default

    So you're wanting to add the contents of your table?
    Back for a while.

  2. #22
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Excellent2 View Post
    So you're wanting to add the contents of your table?
    Of the row "Amount", yes.

  3. #23
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    PHP Code:
    <?php
    mysql_connect
    'localhost''calonuk_trains''*****' ) or die(mysql_error());
    mysql_select_db'calonuk_website' ) or die(mysql_error());

    $handle mysql_query("SELECT SUM(amount) AS total FROM `money`");
    $row mysql_fetch_assoc$handle );
    echo 
    '£'.$row['total'] .' out of £300';
    ?>
    Sorted - thanks, Source.

Page 3 of 3 FirstFirst 123

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •