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

  • SEARCH
  • Home
  • 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 9255287
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:41:01+00:00 2026-06-18T11:41:01+00:00

Following is my code. The first part works perfectly, but the second loop is

  • 0

Following is my code. The first part works perfectly, but the second loop is not producing any results. What this is doing is that it looks for the timetable, then takes out the classes in that, copies all the that and makes a new timtable with same data but a different name.

The other for loop is to add students into the classes of the time table. Ca some one be kind enough and help me out in this as I have been hitting my head on the wall for it now for 5 days.

Thank you in advance. The code:

    <?php
$Q = "INSERT INTO time_table(name, term, year) VALUES
               ('".$name."', '".$term."', '".$year."')";
$res = $db->query($Q);
//for generating the max table id
        $sql2 = "select MAX(table_id) as table_id 
        from time_table 
        ";
        $res2 = $db->query($sql2);
        $count2 = $res2->num_rows;
        $row2 = $res2->fetch_assoc();

      $table_id = $row2['table_id'];
$Q = "SELECT class_id as tcid, day as d, teacher_id as tei, location as l
 FROM class_time_table 
 WHERE term='".$copy."'";
$res = $db->query($Q);
$num_results = $res->num_rows;
      for ($i = 0; $i <$num_results; $i++) {
         $row = $res->fetch_assoc();
            $Q4 = "SELECT * FROM students_class WHERE class_id = '".$row['tcid']."' and term = '".$copy."'";
            $res4 = $db->query($Q4);
            $row2 = $res4->fetch_assoc();
            //for generating the max table id
            $class_sysq = "select MAX(class_sys_id) as class_sys_id 
            from students_class 
            ";
            $class_sysr = $db->query($class_sysq);
            $count_class_sys = $class_sysr->num_rows;
            $class_row = $class_sysr->fetch_assoc();

            $class_sys_idf = $class_row['class_sys_id']+1;
            $Q5 = "INSERT INTO students_class (class_sys_id, teachers_id, location, max_students, class_term_fee, class_name, class_sub_name, term, year) VALUES ('".$class_sys_idf."', '".$row2['teachers_id']."', '".$row2['location']."', '".$row2['max_students']."', '".$row2['class_term_fee']."', '".$row2['class_name']."', '".$row2['class_sub_name']."', '".$term."', '".$year."')";
            $res5 = $db->query($Q5);
            //for generating the max table id
            $max_c_id = "select MAX(class_id) as ci 
            from students_class 
            ";
            $r_mci = $db->query($max_c_id);
            $count_class_sys = $r_mci->num_rows;
            $mci_row = $r_mci->fetch_assoc();
            $max_c_idf = $mci_row['ci'];

            $query2 = "INSERT INTO class_time_table(class_id, teacher_id, table_id, location, day, term, year) VALUES
               ('".$max_c_idf."', '".$row['tei']."', '".$table_id."', '".$row['l']."', '".$row['d']."', '".$term."', '".$year."')";
            $result2 = $db->query($query2);

        $student_q = "SELECT students.first_name as fn, students.last_name as ln, students.email as e, students.mobile_phone as mp, students.home_phone as hp, students.gender as g, students.dob as dob, students.term_fee as tf, students.join_date as jd, students.date_added as da, student_attending_class.class_id as ci FROM students, student_attending_class, class_time_table where students.student_sys_id = student_attending_class.student_id and student_attending_class.class_id = class_time_table.class_id and class_time_table.class_id = '".$row['tcid']."'";
            $student_res = $db->query($student_q);
            $student_num_results = $student_res->num_rows;
            for ($i = 0; $i < $student_num_results; $i++) {
            $theRow = $student_res->fetch_assoc();

            //for generating the new system id
            $sql3 = "select MAX(student_sys_id) as ssi 
            from students";
            $res3 = $db->query($sql3);
            $count3 = $res3->num_rows;
            $row8 = $res3->fetch_assoc();
            $student_system_num = $row8['ssi']+1;

            $query10 = "INSERT INTO students(student_sys_id, first_name, last_name, email, mobile_phone, home_phone, gender, dob, fee_due, registration_fee, term_fee, fee_paid, join_date, date_added) VALUES
               ('".$student_system_num."', '".$theRow['fn']."', '".$theRow['ln']."', '".$theRow['e']."', '".$theRow['mp']."', '".$theRow['hp']."', '".$theRow['g']."', '".$theRow['dob']."', '".$theRow['tf']."', 0, '".$theRow['tf']."', 0, '".$theRow['jd']."', '".$theRow['da']."')";
            $result10 = $db->query($query10);
            $query11 = "INSERT INTO student_attending_class(class_id, student_id, waiting_list) VALUES ('".$max_c_idf."', '".$student_system_num."', '0')";
            $result11 = $db->query($query11);

            }

        }   


?>
  • 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-18T11:41:02+00:00Added an answer on June 18, 2026 at 11:41 am

    Don’t use $i in the second loop but $n for instance.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This following code snippet works fine using jQuery1.2.3, but it doesn’t work with latest
How to DRY the following code and call the first initializer from the second?
In the following code, the first log statement shows a decimal as expected, but
I have the following code which works perfectly fine in my php file and
Can anyone help me decipher why the following code only works on the first
I have the following code, which should perform the first part of creating a
The following code (without showing it all) is my first attempt at using classes.
Does the following code contain a memory leak of the first three characters in
I'm using the Code First approach and have the following Model: public class Person
I have the following code: Public Shared Function GetAvailableManufacturers() As List(Of Manufacturer) 'first get

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.