Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7780727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T18:59:41+00:00 2026-06-01T18:59:41+00:00

Quite a complex question: At the moment I have a table called timetable. This

  • 0

Quite a complex question:

At the moment I have a table called “timetable”. This is updated when someone books a slot (this is for a radio booking system). What I would like is a PHP file that I can have run every 15 minutes as a cron job. In PHP script what I’d like it to do is count how many slots a radio presenter has booked via the “username” field in the “timetable” table. Then I would like it to update a field in another table called “users” in a field called “slot_count” with the amount of slots which were found in the “timetable” table under their “username”.

At the moment I have a script which pulls all the booked slots with their presenter “username”‘s into a table:

<?php 
include("../config.php");
include("functions.php");
if($logged["level"] == "HDJ" OR $logged["level"] == "SA") {

echo "<table width=\"580px\" class=\"board\" border=\>";

$order = "SELECT * FROM timetable WHERE username <> 'No DJ'";
$result = mysql_query($order);

// Error checking
if (!$result) {
  // output error, take other action
}
else {
  while ($row=mysql_fetch_array($result)){
     // Append all results onto an array
     $rowset[] = $row;
  }
}
    foreach ($rowset as $row) {
  echo "<tr><td>" . htmlspecialchars($row['username']) . "</td></tr>";
}

    } else {
echo ("<div class=\"caution\">Access is denied.</div>");
}
?> 

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T18:59:42+00:00Added an answer on June 1, 2026 at 6:59 pm

    Storing this redundant data in your users table is unnecessary. As long as the tables are indexed appropriately the join and count are trivial –

    SELECT users.*, COUNT(timetable.username) AS num_slots
    FROM users
    LEFT JOIN timetable
        ON users.username = timetable.username
    GROUP BY users.id
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This might be quite a strange question since usually people bind only complex types
This is quite a complex question, I'm sure. I've tried trawling the internet for
I know that the question I have is quite complex, and I really hope
I have a quite long and (for me) complex question. I have voting data
My question is close to this one but not quite the same. I have
We currently have a quite complex business application that contains a huge lot of
I have a quite complex class hierarchy in which the classes are cross-like depending
I have a quite complex multi-join TSQL SELECT query that runs for about 8
I hope I will find a help here. I have a quite complex MVC
I have a script that works great. It is quite complex and does numerous

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.