newbie : trying to count records in mysql table

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default newbie : trying to count records in mysql table

    Help, I get no output on this code

    // Connect to database.
    $dbh = mysql_connect("localhost","user","password");
    mysql_select_db("survey");

    $query = "select count(*) from response1";
    $result = mysql_query($query, $dbh);

    while ($rows = mysql_fetch_row($result)) {
    $count = $rows[0];
    }


    print $count;







    any one have any Ideas ?

    Thanks in advance
    Jim


    jim Guest

  2. Similar Questions and Discussions

    1. No records found for MySQL Table
      Hello, We have a MySQL table that we had been using PHP to query, but now we want to query the table using CF 5.0 on a windows 2000 server. The...
    2. ASP Group Same Records and Give Total Count
      I need to know how to group like parts, then count them in asp. I have a table with 60,000 + part numbers that I need a total of each one that is...
    3. newbie question on count()
      I have been driving myself crazy for hours now on a simple (I thought) little deal. I've given up and come for some help. Below is my code snippet....
    4. newbie php MySQL table question
      Thanks to you both guys. As for reading the manual - I have 4 in front of me and couldn't find the answer to my problem. Some things you do find,...
    5. Delete from one table with matching records in another table
      I'm an Access programmer making the migration to SQL Server, and I want to delete all the records from one table with matching records in another...
  3. #2

    Default Re: newbie : trying to count records in mysql table

    try this....

    // Connect to database.
    > $dbh = mysql_connect("localhost","user","password");
    > mysql_select_db("survey");
    >
    > $query = "select count(*) AS rec_count from response1";
    > $result = mysql_query($query, $dbh);
    >
    > while ($rows = mysql_fetch_row($result)) {
    > $count = $rows['rec_count'];
    > }
    >
    >
    > print $count;
    Haven't tried it.....

    hope tis helps...

    point

    "jim" <luvkatz@tds.net> wrote in message
    news:p78sgv8rg85e9t7940qpeu86vpe95mp5oq@4ax.com...
    > Help, I get no output on this code
    >
    > // Connect to database.
    > $dbh = mysql_connect("localhost","user","password");
    > mysql_select_db("survey");
    >
    > $query = "select count(*) from response1";
    > $result = mysql_query($query, $dbh);
    >
    > while ($rows = mysql_fetch_row($result)) {
    > $count = $rows[0];
    > }
    >
    >
    > print $count;
    >
    >
    >
    >
    >
    >
    >
    > any one have any Ideas ?
    >
    > Thanks in advance
    > Jim
    >
    >

    point Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139