Tagged Questions

2
votes
2answers
197 views

Modifying a PHP/Mysql timetable

I currently have this code: $rawsql2 = "SELECT * FROM _erc_foffices n INNER JOIN _erc_openings o ON n.id = o.branch_id ...
1
vote
2answers
636 views

Multi-class, interlinked school timetable as a MySQL database

I've looked around for a bit now at other suggestions relating to this, but nothing I've seen has quite suited my needs, so here goes! What I have is a multi-class (Australian secondary school; Years ...
0
votes
2answers
34 views

PHP / MySQL timetable comparison

I have an idea for a project that I am currently working on, I am however struggling to find a way to implement this in PHP/MySQL. I have a database with a list of activities that a tattoo parlour ...
0
votes
1answer
141 views

Using a converted Unix Timestamp to query the database

I am currently using this: $rawsql = "SELECT * FROM _erc_foffices n INNER JOIN _erc_openings o ON n.id = o.branch_id AND o.dotw = DAYOFWEEK(CURRENT_DATE()) INNER JOIN ...
0
votes
2answers
161 views

PHP opening times & embassy holidays

I've been using this code: $rawsql = "SELECT * FROM _erc_foffices n INNER JOIN _erc_openings o ON n.id = o.branch_id AND o.dotw = DAYOFWEEK(CURRENT_DATE()) INNER JOIN ...
0
votes
1answer
447 views

Dynamically check timetable for clashes - jquery/php

I'm making a timetable site for a music festival. The purpose of this site is for people to choose acts they want to see and compile their own personal timetable for the event. At the moment the site ...
0
votes
2answers
2k views

Creating a timetable using PHP

I am going to create a little app using PHP that acts as a timetable. I am going to have it going from 9.00am to 5.00pm and through monday to friday. I am still deciding how i want the timetable to ...
0
votes
2answers
251 views

Have a dual-timetable system

I am trying to do a dual-timetable system thing. Basically, it's for a school project, and some schools have week 1 and week 2 systems. The way this works is through alternating each week, so at ...
-2
votes
1answer
79 views

How about using PHP for a web based course timetabling? [closed]

I am thinking of using PHP to create a web based course scheduling application. Is PHP a good choice of language for a web application of this type?