PHP Mysql Staff Induction System
         
               Posted on 
16th Feb 2014 07:03 pm by  
admin
        
        Hi there, I'm pretty new to PHP and Mysql so could really do with being pointed in the right direction with this problem I have.
I am trying to set up a system induct new members of staff onto their training programme.
First I have created a table 'induction_course_dates' of all the course dates and induction_course_titles of all the different courses.
These are the 2 queries I have made on the database
///////////////////////// Make the course title query //////////////////////////////
$q_courses = "SELECT * FROM induction_course_titles";
$result_courses = mysqli_query($dbc, $q_courses);
$row_courses = mysqli_fetch_array($result_courses);
///////////////////////// Make the course date query //////////////////////////////
$q_date = "SELECT * FROM induction_course_dates WHERE DATE(course_date)>='$today' AND course='$courseID' ORDER BY course_date ASC LIMIT 4";
$result_date = mysqli_query($dbc, $q_date);
$row_date = mysqli_fetch_array($result_date);
Obviously in the second query '$courseID' does not have a value so won't actually return anything but I don't know how to loop it through all of the induction_course_titles id's.
For example if it the query read...
///////////////////////// Make the course date query //////////////////////////////
$q_date = "SELECT * FROM induction_course_dates WHERE DATE(course_date)>='$today' AND course='2' ORDER BY course_date ASC LIMIT 4";
$result_date = mysqli_query($dbc, $q_date);
$row_date = mysqli_fetch_array($result_date);
...then this would return the results I'm looking for but there are 25 different courses. 
I want the final output to appear as below
The user will select a date from the next four available
<table border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td>Course 1</td>
    <td>
      <select name="select" id="select">
        <option value="date1">Date 1</option>
        <option value="date2">Date 2</option>
        <option value="date3">Date 3</option>
        <option value="date4">Date 4</option>
      </select>
    </td>
  </tr>
  <tr>
    <td>Course 2</td>
    <td><select name="select2" id="select2">
      <option value="date1">Date 1</option>
      <option value="date2">Date 2</option>
      <option value="date3">Date 3</option>
      <option value="date4">Date 4</option>
    </select></td>
  </tr>
  <tr>
    <td>Course 3</td>
    <td><select name="select3" id="select3">
      <option value="date1">Date 1</option>
      <option value="date2">Date 2</option>
      <option value="date3">Date 3</option>
      <option value="date4">Date 4</option>
    </select></td>
  </tr>
  <tr>
    <td> </td>
    <td><input type="submit" name="button" id="button" value="Submit" /></td>
  </tr>
</table>
Can anybody help?!!!! PLEASE!!!!!       
      
       
		No comments posted yet	
	Your Answer:
	        Login to answer
        
335   31
 31  
 
    
    
 
Other forums
Passing vars to the DB 
I have 3 small testing tables:
ID TYPE
1  pepperoni
2  C. bacon
3  taco
ID TY
A Few Questions 
Hi, I want to ask a few questions that I can't seem to find..
1) I'm creating a "shortcu
Mail form doesn't send Russian/Cyrillic characters correctly? 
When someone enters foreign characters (like Cyrillic text, and Japanese/Chinese probably gives the 
Help =( !! Upload Pics [PHP script] 
Hello
I need help with a php script [MULTIPLE UPLOAD IMAGES] , where I want to add a feature (wat
I need desperate help with this php code integrated with flash please 
Can someone please help me with this php code which I have been stuck on for weeks .  I am trying to
Stats of viewers 
Hello. I have a website in php and people can login. I want to make an admin control panel where u c
New to Arrays 
Hi I am new to PHP (a week and a half now) and I am just beginning to read about arrays. I understan
subtract 1 from value entered in text field 
Hi
How do I subtract 1 from the vaue entered into a text field?
Thanks
how to use two buttons with php 
hi i have one form. there are three fields which are to be filled by the user. and then there are tw
ImageCreate() 
When I create an image and add text to it I want my text to be replaced with a PNG image, because th