Jump to content

Recommended Posts

Hi.

 

I need to use the total count of items from a table in an equation in javascript.

 

This is as close as I have gotten:

 

$sql =  "SELECT COUNT(mailingID) FROM mailinglist";

$result = mysql_query($sql);

var sum=  "<?= $result ?>";

 

var sum returns the correct number but preceded by Resource id# (i.e. Resource id #5) and I cannot use this for equations. Any one got any ideas on how to just get the number?

 

Cheers

 

Hi,

 

try this:

var sum=  "<?= mysql_num_rows($result); ?>";

That will always return 1 however...

 

Try this instead:

 

<?php
$sql =  "SELECT COUNT(mailingID) AS cnt FROM mailinglist";
$result = mysql_query($sql);
$row = mysql_fetch_assoc($result);
?>

var sum=  "<?= $row['cnt'] ?>";

Thanks!

 

This worked:

<?php

$sql =  "SELECT COUNT(mailingID) AS cnt FROM mailinglist";

$result = mysql_query($sql);

$row = mysql_fetch_assoc($result);

?>

 

var sum=  parseInt  ("<?= $row['cnt'] ?>");

 

with the parseInt

 

Thanks for your help

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.