Jump to content

Recommended Posts

You're not processing your query correctly. When processing MySQL queries you need to pass them to the mysql_query function first. You'd then pass the result to one of the mysql_fetch_* functions, eg mysql_fetch_assoc

You are using a built in constant with the wrong function.

 

 

Change

mysql_fetch_assoc($result4, MYSQL_NUM);

to

mysql_fetch_array($result4, MYSQL_NUM);
//or
mysql_fetch_row($result4);

 

also, you need to run mysql_query on $result4...

 

i.e

 

$query4 = "SELECT COUNT(*) FROM web_attendance WHERE occurence_id = " . $occurenceid;
$result4 = mysql_query($query4)or trigger_error(mysql_error(), E_USER_ERROR);
$row4 = mysql_fetch_row($result4);

echo $row4[0];

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.