Web Development Thread, Online Resource Booking System in Coding and Web Development; One of my primary schools has an e-learning centre so that Year6/7 children can come and use the school ICT ...
-
20th January 2006, 04:40 PM #1 Online Resource Booking System
One of my primary schools has an e-learning centre so that Year6/7 children can come and use the school ICT facilites after school for homework.
Booking these facilities by phone is causing some problems and he'd like an online resource booking system. E.g parents logon the previous evening or during the day and book their child in for that day.
Does anyone use any such system or know of one that could be used for this purpose.
I think our LEA can provide us with PHP/SQL facilities ( I just know these buzzwords - I don't know what they are :P and Dos-box is always telling me just to ask and I will receive :P ) so it wouldn't cost us anything to host something.
regards
Simon
-
-
IDG Tech News
-
20th January 2006, 05:25 PM #2 Re: Online Resource Booking System
@SimpleSi: MRBS could probably be used with a couple of very basic tweaks. I assume that you book the individual computers out so you could replace the word Room with Computer and authenticate against either a basic database or simply set up the logins in the config file.
There's a few of us that use MRBS for booking out computer suites so we can help with any probs.
-
-
20th January 2006, 08:11 PM #3 Re: Online Resource Booking System
Yeah we use it here I set it up for this September and it's been a big hit!
The only trouble is the bloody way our timetable works on a 2 week rota and which week it will be after each half or full term lol. But MRBS is excellent!
Wes
-
-
20th January 2006, 09:02 PM #4 Re: Online Resource Booking System
@wesleyw: Should not effect Si since it will simply be 1 block for each PC after school each day.
-
-
20th January 2006, 09:54 PM #5 Re: Online Resource Booking System
wesleyw: We have the exact same issue. 2 Week timetable then a holiday throws the whole thing out so I do the bookings for half a term at a time and then you get the clever dick teacher who books more in advance.
Will have to see if I can restrict that would be great to be able to insert holidays etc... and have it automatically move the bookings forward
Ben
-
-
20th January 2006, 10:18 PM #6 Re: Online Resource Booking System
I posted some code in the scripts forum a while ago to let you limit the days ahead people could book on MRBS. That could solve one of your issues.
-
-
20th January 2006, 11:06 PM #7 Re: Online Resource Booking System
I changed part of the code because it booked until 2010, I know someone would book a year in advance if they could! lol
I'll have to look out for that then Chris.
Thanks
Wes
-
-
20th January 2006, 11:38 PM #8 Re: Online Resource Booking System
Post is here: http://edugeek.net/index.php?name=Fo...iewtopic&t=357
Ive not had any issues with it so far since August.
-
-
23rd January 2006, 03:43 PM #9 Re: Online Resource Booking System
Thanks for info - the webmaster at Lancs is setting up a database for me - so I;ll be back shortly asking the really stupid questions - like how do you switch it on :P
regards
Simon
-
-
1st February 2006, 09:12 PM #10 Re: Online Resource Booking System
It may be too late to post this but here goes anyway. We use a home-grown ASP/SQL solution which suits us. However another school in our LEA uses OARBS - which is a free online booking system:
http://www.oarbs.com/
-
-
1st February 2006, 09:56 PM #11 Re: Online Resource Booking System
We use OARBS as well, you may notice that my place of employment is also mentioned on the OARBS front page (not me
)
-
-
2nd February 2006, 08:47 PM #12 Re: Online Resource Booking System
@webman
This looks great for the simple task we need it for- but why/how is it free = what's your involvement?
regards
Simon
-
-
28th September 2008, 02:07 PM #13 
Originally Posted by
u8dmtm
Can't seem to find a download link for this ?
-
-
28th September 2008, 03:07 PM #14 Where is the installation documentation for MRBS as it doesn't work on my XP PC... ?
-
-
29th October 2008, 08:34 PM #15
The only trouble is the bloody way our timetable works on a 2 week rota and which week it will be after each half or full term lol.
Should be able to nudge all entries + or - 7 days to move it into line after holidays with a MySQL query... add 604800 to start and end times (and end date for repeat table) to move it forward 7 days. subtract to move it back 7 days on both the entry and repeat tables. Should be able to script it with php somewhere to do it at push of a button. Haven't done it meself yet but it's on my list of things to do as they've decided to collapse timetable for an intensive study week first week back after half term, and am unsure where it lands us in terms of week1 or week2 when things get back to normal.
EDIT: change mrbs_entry and mrbs_repeat to match your table names.
UPDATE mrbs_entry SET `start_time`=`start_time`+604800,`end_time`=`end_t ime`+604800
UPDATE mrbs_repeat SET `start_time`=`start_time`+604800,`end_time`=`end_t ime`+604800,`end_date`=`end_date`+604800
Run those on your MySQL database to shift everything forward one week.
UPDATE mrbs_entry SET `start_time`=`start_time`-604800,`end_time`=`end_time`-604800
UPDATE mrbs_repeat SET `start_time`=`start_time`-604800,`end_time`=`end_time`-604800,`end_date`=`end_date`-604800
Run those to shift everything back a week.
Last edited by Marci; 29th October 2008 at 08:53 PM.
-
SHARE: 
Similar Threads
-
By Jona in forum How do you do....it?
Replies: 212
Last Post: 24th August 2012, 12:15 PM
-
By plock in forum Network and Classroom Management
Replies: 33
Last Post: 9th September 2009, 10:09 AM
-
By sLiDeR in forum Network and Classroom Management
Replies: 3
Last Post: 8th August 2007, 07:53 AM
-
By robknowles in forum MIS Systems
Replies: 4
Last Post: 3rd July 2007, 07:52 PM
-
By imullings in forum Educational Software
Replies: 2
Last Post: 5th September 2006, 08:10 PM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules