Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Mail Problem - Online Booking System For Equipment.


I am writing an online booking system for equipment. I want to be able to
automatically email those who have booked equipment, say one or two days
before to remind them of their booking. Does anyone have any ideas of how I
could do this (I am familiar with the mail() function in PHP).




View Complete Forum Thread with Replies

Related Forum Messages:
Online Booking System
I've been scouring the web for an example, but just need pointing in the right direction. Ultimately I want to do this myself, just a simple booking system is required.

Essentially how the system works is that when someone comes to the show they need a website assessing. The first stage is to select an engineer which will carry out the assessment.

Once you have done this a screen appears with the available time slots with text fields which needs to be completed for that specific engineer to fill in the site requirements.

An idea perhaps is to create an online calender which I've already coded so that they can click on a specific date, and on the same page the time slots available.

View Replies !
Online Hotel Booking System
I want to build an online hotel booking system, where by people can book hotels online and make payment with a credit card. There will be extra goodies for registered members.

I want idea of how to go about this especiall with the online payment with the credit card. Online payment with credit card is something i honestly have no idea of it. I will be grateful if i can get explanation how to implement such a system or sample script.

View Replies !
Online Booking System For The Apartments And Hotels
I am looking for online booking system for the apartments and hotels and i can not find that.

View Replies !
Online Booking Calender
I wanted to put a calender on my website to allow people to see up coming clasess we have and allow them to booking/pay for them also. I would add them in the back end and how many spots are availble and when someone clicks on to pay for the class and checks out all the way it would subtract it from the total amount.

I would also like it to show on the date when all spots are gone Sold out and when only one is left only 1 spot left. I would like to see if there is a script out already that does this now. I am new to php/mysql so it would be great to find this.

View Replies !
Booking System
I just wrote an incredibly complicated bookings system for a client, it worked marvelously. implemented in a cms & everything. The problem is: I needed to allow for cross year bookings, so I tried to implement that, thinking it would be easy. think again. The whole things gone gaga. Like the absolute moron I am, I didnt save it.

does anyone have a suggestion for a script I can leech? Im desperate, ill lose my job if the presentation doesnt go off smoothly. I cant pay anyone, but id help anyone if they had a problem like this.

View Replies !
Booking System
I am trying to do a booking system concerning my project at the university(using PHP &MySQL)I am hasving the following problem: Code:

View Replies !
Ticket Booking System
I am prototyping a ticket booking system and just wanted to ask a few
questions.

1 - What is the standard way of temporarily reserving a number of
tickets throughout the purchasing process (to stop other people
reserving those seats or whatever).

2 - What do you do to release these 'seats' if someone closes their
browser? Is it just a cron job set for every 20 mins?

I am sure I have seen a solution to this before but can't find it now.

View Replies !
Room Booking System
Loooking for a simple script to help reserve rooms in a building, 10 rooms where some times are booked week - on - week and also have two diffrent time tbale weeks?

View Replies !
Compare Two Dates In A Booking System
i want to compare two dates called booking_start_date and booking_end_date to make sure that the booking start date comes before the booking end date. at the moment both dates are just stored as dates in the mysql database. anybody know how i could do this?

and also does anybody know how i can find the number of days that the booking is for based on the dates that the user has entered as it will be needed for me to calculate the price of their overall booking.

View Replies !
Wanted: Open Source Php Course Booking System
we are looking for a slim open source course booking system with the
following features:
* users can enroll for courses, cancel their bookings
* maximum number of participants
* administrator's pages: list of participants and their contact details
(email, phone etc.)

So far, we have found an extension to the mambo CMS
http://mamboxchange.com/projects/akreservations/
and a rather smaller application (privately developed)

However, are there better alternatives?

Desired features:
* open source
* currently active development
* as "slim" as possible (mambo is quite a heavy weight!), may be even
without using a mysql database (like for example the slim version 1.x
of the gallery php application).

View Replies !
Checking Room Availability For Hotel Booking System
I was wondering if anyone could help me with a problem I'm having.
I've been using Dreamweaver to create a hotel booking system for a
friend of mine, using MySQL (version 4.0.21) and PHP 5. The bit I'm
struggling with is checking the Room Availability based on dates that
are typed into a textfield and then returning a list of the available
rooms on the next page.

The three tables involved in this function are:

CREATE TABLE `room` (
Room_Number tinyint(1) UNSIGNED NOT NULL,
Price_Double_per_Night decimal(5,2) NOT NULL,
Price_Twin_per_Night decimal(5,2) NOT NULL,
Price_Single_per_Night decimal(5,2) NOT NULL,
Price_Double_per_Week decimal(5,2) NOT NULL,
Price_Twin_per_Week decimal(5,2) NOT NULL,
Price_Single_per_Week decimal(5,2) NOT NULL,
PRIMARY KEY(`Room_Number`),
)
TYPE=InnoDB
ROW_FORMAT=fixed;

CREATE TABLE `room_booking_link_entity` (
Room_Number tinyint(1) UNSIGNED NOT NULL,
Room_Booking_ID int(11) NOT NULL,
Single_Double_Twin enum('Single','Double','Twin') NOT NULL,
PRIMARY KEY(`Room_Number`, `Room_Booking_ID`),
INDEX `Room_Number`(`Room_Number`),
INDEX `Room_Booking_ID`(`Room_Booking_ID`),
FOREIGN KEY `Reference_14`(`Room_Number`)
REFERENCES `room`(`Room_Number`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
FOREIGN KEY `Reference_85`(`Room_Booking_ID`)
REFERENCES `room_booking`(`Room_Booking_ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION
)
TYPE=InnoDB
ROW_FORMAT=fixed;

CREATE TABLE `room_booking` (
Room_Booking_ID int(11) NOT NULL AUTO_INCREMENT,
Customer_ID int(11) NOT NULL,
Bill_ID int(11) NOT NULL,
Date_of_Arrival date NOT NULL,
Date_of_Departure date NOT NULL,
Number_of_Nights tinyint(3) NOT NULL,
Date_Booking_Made date,
Status_of_Booking enum('Booked','Arrived','Departed') NOT NULL,
Total_Cost decimal(7,2) NOT NULL,
PRIMARY KEY(`Room_Booking_ID`),
INDEX `Room_Booking_ID`(`Room_Booking_ID`),
INDEX `Customer_ID`(`Customer_ID`),
INDEX `Bill_ID`(`Bill_ID`),
INDEX `Date_of_Arrival`(`Date_of_Arrival`),
INDEX `Date_of_Departure`(`Date_of_Departure`),
INDEX `Status_of_Booking`(`Status_of_Booking`),
FOREIGN KEY `Reference_03`(`Customer_ID`)
REFERENCES `customer`(`Customer_ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
FOREIGN KEY `Reference_14`(`Bill_ID`)
REFERENCES `bill`(`Bill_ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION
)
TYPE=InnoDB
ROW_FORMAT=fixed;

I've just discovered that MySQL 4.0.21 does not support subqueries.
I'm basically stuck with this version of MySQL. I think I've got
round the subquery problem by using a multi query option as follows:

1.Create a temptable that will store all of the room numbers that
have bookings for the particular dates requested as follows:

SELECT DISTINCT a.room_number INTO temptable
FROM booking_link_entity AS a INNER JOIN room_booking AS b
WHERE b.departure_date >$_POST[‘ARRIVAL'] And b.arrival_date <
$_POST[‘DEPART'];

2.Left join this with the room table and pull out rows with no match

SELECT a.room_number, b.room_number
FROM room AS a LEFT JOIN temptable AS b ON a.room_number=b.room_number
WHERE b.room_number IS NULL;

3.Delete temp table

I've tried doing this in Dreamweaver, but to no avail. I have a
feeling it is too complex for Dreamweaver.

My php knowledge is very basic and was wondering if anyone could give
me some pointers as how to do this in PHP?.

View Replies !
PHP Online Learning System
Does anyone know of a good software package written in PHP for online learning. I am looking for something taht would allow me to add and remove students, track their progress, edit / content. Does anyone know of a package like this, or should I start writing my own?

View Replies !
Online Payment System
I am developing a site for a client who wants to sell courses. I have looked at paypal and it looks like the best choice, but the site needs to be able to give special offers for courses based on what courses the user has bought before.

So, although I need a simple payment system, I need to have some feedback from the provider of who has bought what. I have looked at the paypal site and sent an email to no avail. Does anybody know if this is possible with either paypal or perhaps another provider.

View Replies !
Setting Up An Online Chat System
I have been asked by my manager to look into the possiblily of setting
up an online chat system for the external website. We run an Apache
server with PHP (hence the reason Im posting here) so it would need to
run on that.

Basically, it will run on the website and its purpose will allow
members of the public to access the chat room and discuss current
topics with experts. Similar to a doctors interactive website where
patients can speak and get advice from their GP.

Anyway, Ive never set up anything like this before so dont really know
where to begin. The chat system may be something that we would need to
pay for but ideally it will have a professioanl appearance and be easy
to implement.

View Replies !
[MySQL] Extend Who's Online System
I'm using this query to retrieve the screen- and usernames of al the members who were on-line in the past 15 minutes. My website has got larger and there's added an option for users to define who their friends are, stored in a new MySQL table called 'thijs_friends'. Now I want this query to select the on-line users whereby it the users who are on-line and also are marked as friends of the user executing the query separates from the 'normal' users.

Anybody knows how this can be done?

The SELECT statement may look something like this 'SELECT ..., is_friend FROM ...' where the fake 'is_friend' column can have the value 0 or 1? Perhaps with a temp-table or another JOIN?

Current query .....

View Replies !
Time Online User System
I'm building something special but dont really know whats the best way to start this
i want to messure time online from users that signup for it So i can make a toplist of the best visitors that where online and active But how do i messure time and how do i abort it when they are not active for a <? while ?>?

View Replies !
Online Live Support System
i want do display followign screen by entering userid and password by mentioning them staticly like i will give admin and password adm123 once when i open admin.php it should directly take me to admin screen.

View Replies !
PHP / MySQL Online Status For User Authentication System
I'm working on a user authentication system. My problem is with an "online status" element. So far, I have that when the user logs in, a field in my members MySQL table, called loggedinstatus is set to 1. This means that that certain user is currently logged in.

The problem is, is that the only way that loggedinstatus is set to 0 (the user is not logged in) is when the user clicks the logout link. If the user just goes to another website or closes his or her browser, the loggedinstatus is left at 1. How would I get around this problem?

View Replies !
Feed Results Into Mysql From Laboratory Equipment
Well I've gone ahead and designed my new database to replace my old 'purchased' one (which had limited functionality).

The database is in MySQl with the front end in PHP.

I can read reports and data from my database HOWEVER,
I have not yet designed the system of inputting the data.
I have not done this before so need some help

The DATA comes from 4 laboratory machines. All with different interfaces. All connected to its own PC. Code:

View Replies !
Mail Headers For Online App Are Not Working Properly
We switched to a new host last night and for some reason my mail headers for my online app are not working properly. The following code use to display the incoming apps as an html page in Outlook. Now it displays "Content-type: text/html; charset=iso-8859-1" at the top along with the page source below it.

$mailheaders = "MIME-Version: 1.0";
$mailheaders .= "Content-type: text/html; charset=iso-8859-1";
mail($allRcv, $subject, $msg, $mailheaders);

View Replies !
Online Text Editor W/mail Merge Capabilities
I'm looking for an online text editor with mail merge capabilities which
generates PDF output suitable for printing.

Anyone know of a solution, open-source or otherwise?

View Replies !
Importing Items From Online Calendar To Mail Client
Has anyone any idea if it's possible to import items from a database table into your mail client calendar? I'm using Ximian Evolution, but Outlook is very relevant to, because most users are still stuck in the M$ mess...

View Replies !
Mail System
I want to make a mail system that works like this : I have a site for a gamers clan , so lots of members visit this site every day , now I want to make a mail system that does this :

When you visit my page you see somewere on the page a thing that makes you login or register if you aren't allready , so if you login you are able to send short text messages to people that are registered on the site , so you are able to send simple text (not images etc...) And when that user visits the page , logs in , he has to see some thing that indicates he has new mail (example : "You have 1 new email") And that he can read it on that same site by clicking on that message or something

I know it sounds weird , but I 've seen it on a site http://shrimpwars.be <-on the top right you can log-in or register etc ...


Please help me , at least tell me what function I should use (mail() , smtp ...)


Thanks

View Replies !
Web Mail System
1. I have written the registration of new email account.
2. I can write email and send it out in php.

q1. but I do not know how to read each email from the account that has emails and displays accordingly to each email account after he /she logins. I think neoemail is written in perl. I wish I could write something like the neoemail.

View Replies !
Need A Full Corporate Mail System
I am running apache 2.2.6-1.fc7. I am now writing a site that will require the sending of forms by php mail().

What is the minimum I need to configure on my apache development server to
allow me to do this. I do not need a full corporate mail system, just
allowing the website forms to use php mail() on the testing server, I know...

View Replies !
On-site Messenging/mail System
I need an internal (on-site) messenging/mail system, essentially a memo system, so users on my site can send message to other users. Anyone know a good site to get one? or do you recommend I make one myself?

View Replies !
WordPress System Mail Sending Problem
I'm facing a silly problem using WordPress in my server. Actually my
host is sf.net who might have disabled phpmailer function and that is
why whenever wordpress suppose to send a system mail to any email
address, it fails. For example when a user signs up, it suppose to
send some confirmation mail to the user, but it fails to send that.

View Replies !
Automated Mail Generated Notification System
I want to send the mail internally with out using inbox,compose etc from my local system to a remote domain.

View Replies !
Make A Mail System Like Outlook Express
i need to make a mail system like outlook express that mean i run my system on client system it connect to server download mail on client system and after this i work with these mail exectly like outlook express. Firstly i am confuse how to download mails from web to client system?

View Replies !
MySQL Form Driven Mail System
I'm hoping to find an example(s) of a mysql/form mail system... I
would like users to be able to mail each other internally through some
sort of form system. My searches so far have turned up lots of
discussion/forum stuff, but not a simple mail system. I'm not looking
to buy anything (having fun learning PHP), I'd just like some
examples to have a look at. Code:

View Replies !
Set Up A Mail System Where By All Of The Email Addresses Saved In My Adds.txt
i am trying to set up a mail system where by all of the email addresses saved in my adds.txt document can be Emailed with a message written out in a text area.

The simple script works however, it runs everytime i view the page. So if i refresh, each Email address recieves a blank Email. Code:

View Replies !
Booking
I have a system to for booking books online. I have start date,end date, start_time and end_time.

I'cant figure out how to validate those fields not to book one book 2 times in same time.
For example if the book is already booked than you get message this book is already booked
Any idea?

View Replies !
Booking Code
i cant even get it to work in the browser at the moment it gives me the error:

Parse error: parse error, unexpected T_ELSE in C:APACHE2Apache2htdocsadd_book.php on line 91

which is the else in the lines which is before the form starts:

else {
$accommid = $_POST['accommID'];

i have confused myself completly with all the if's and elseif's and the brackets that go with each. however i am trying to do a booking script that will search to see if the dates that the users have entered are avaialable for a particular accommodation.

also i need to be able to solve the concurrent user problem to ensure that an accommodation cant be double booked. Code:

View Replies !
Booking Dates
I'm familiar with easy php/mysql-applications, but i've run into a problem now. I'm trying to build a booking system(for training purpose), and I'm kind of stuck when it comes to this:

* each booking record in db has a "from" and a "to" date(DATE format)
* how can i return available objects when a user searchs for "available objects from 2006.01.01 to 2006.03.01 ?

View Replies !
Booking Purpose
I need to do a functionb of select seat for booking purpose using php. This function is like we can choose or select the seat when we make movie tickets reservation online.

View Replies !
Mail Function PHP Must Have Access To The Sendmail Binary On Your System During Compile Time.
i'm almost 100% sure my code is good as I basically copied and pasted the same code I had working on my web server. Now, I have it setup to email a form from a network server php file. The problem is that it isn't working. Neither is a header Location line either for that matter. I'm wondering why this is. Could it be because somehow these require php libraries that they don't have access to? It works fine on my web server. I found this snippet on the mail function: Quote:

For the Mail functions to be available, PHP must have access to the sendmail binary on your system during compile time. If you use another mail program, such as qmail or postfix, be sure to use the appropriate sendmail wrappers that come with them. PHP will first look for sendmail in your PATH, and then in the following: /usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib. It's highly recommended to have sendmail available from your PATH. Also, the user that compiled PHP must have permission to access the sendmail binary.

View Replies !
Simple Room Booking App?
I'm lazily looking for a simple app that will let us match up
teachers, classes, and instructors, preferably with a php/mysql
infrastructure so that it's accessible via the web. If there is a
single good repository of free scripts that would be useful as well.

View Replies !
Reservation / Booking Scripts
I have been looking for some time for a php/MySQL booking / reservation scripts for a tourism business. Bughotel is the right type of thing but a little top heavy. Any others out there people might recommend. I have done some pretty intensive searches at sourceforge et al.

View Replies !
Script To Allow Booking Of A Timeslot
I'm trying to write a script to allow booking of timeslots between 6am and 6pm - 1 min intervals. Only 1 owner per slot. Once their booked - they're gone.
Here's where I'm at -

Database called time - 2 tables called timeslot (time_id,time) and owner(owner_fname,owner_lname,email,time_id). Code:

View Replies !
Calculation Problem - On-line Holiday Booking
I have a calculation problem in this system i am doing for on-line holiday booking. Rates are given for a particular date range as follows in the "rate" table:

E.g.
$10 for 2005/10/01 - 2005/10/05
$20 for 2005/10/05 - 2005/10/10

If client wants to travel from 2nd to 9th, the cost should be $120.00 Calculation:

2nd to 5th @ $10 per day = $40
6th to 9th @ $20 per day = $80


View Replies !
System(); Command Not Working On Remote System. Windows.
My server is a windows machine, on the same domain as python(also a windows machine). Apache is running as a service as an administrator. This is a test only environment to whom it may concern(I hate people telling me how insecure my system is) I'm just trying to run:

$last_line = exec('dir pythonc$', $retval, $g);
print_r($retval);
echo '<br>'.$g.'<br>';
echo '$last_line= '.$last_line.'<br>';
Which outputs:

Array ( )
1
$last_line=

The command from the command line works fine. And apache can access directories that only administrators can access on the local machine.

View Replies !
Mail Problem - Warning: Mail() [function.mail]: SMTP Server Response: 550 Invalid Recipient:
Whenever the recipient's email address includes a hyphen ( - ), I get the following error message...

Warning: mail() [function.mail]: SMTP server response: 550 Invalid recipient:

I should stress that this only seems to occur when the hyphen is in the URL portion of the address, i.e example@perfect-example.com

The current code works along the lines of...

mail ($_POST['email'], 'Email subject is here', $body, $headers);

View Replies !
Make A News System With A Template System
i'm a total,and mean total newbie in PHP. I want to make a news system with a template system(like footer.php and header.php) but dont know how to?

View Replies !
Login System - News System
i have to do a news system wich use php/mysql.

i need 3 accounts:

* a 'reader' who doesn't need to log in to read the news
* a 'writer' who can write news in a pending news table
* a 'moderator' which validate a pending news, and make it a regular news,
viewable from the site (by the 'reader')

This is a small web site, so i can't use SSL; and i use php sessions.

Right now, i deal with account from a mysql users point of view, which
means, that a 'reader' can access all the admin part of the site, but will
ger errors when trying to read/write by sql query.

I was wondering if somedody could give me a trick to deny access to the
admin pages. Rigth now, i though about these:

* by decoding mydql rights? (how)
* by doing only-to-test query? (bad i think, especially for write right)

View Replies !
Warning: Mail(): Bad Parameters To Mail() Function, Mail Not Sent. In /
I have a website with a contact form and I tested to see if the form would actually send the submitted info to my email but I get this error...

Warning: mail(): Bad parameters to mail() function, mail not sent. in /home/content/g/o/l/goldenhills/html/email_us.php on line 62

Here's the php code:

View Replies !
After Executing System(), How Can I Pass "Y" To System By Php?
I want to use the system command to set user's priority

$cmd = "cacls d:appservwwwaccountMng$userName /G $userName:F";
system($cmd);

Then it appears
Are you sure (Y/N)?

How can I pass the "Y" to system by php?

View Replies !
Who Is Online?
i want to show how many visitors are on my homepage "index.php" at the same time. i do not want nor do i need them to register for membership or anything. i just want to simply show how many people are on at the same moment.

View Replies !
Whose Online
I'd like to find and use a PHP script that like Vbulletin can display a list of those who are online within a set limit of time. I see the opposing language by MS plastered all over the net (dont post the a word as I trued -a.p in my search so others smart like myself in their search may find this page in the future).

Anyway does anyone have or know of such a php script? The reason I can't continue using it is because the chgdir is messing with my another script. I do not know how to reset chgdir once set and no one has posted that. If they did I'd not have to post this alternatively.

View Replies !
Who's Online?
How do you determine how many users are logged into a site at once or viewing a certain page? Obvious examples are all over this board. If I use a session or cookie, how do I wipe it clean when the user closes his browser?

View Replies !
Who's Online...
i'm going to build a who's online for a client, but I have a problem. I don't know how to do it with this kind of db. (done by a past programmer). Here it is

+----------------+--------------+
+ user_id + int(11) +
+----------------+--------------+
+ real_time + datetime +
+----------------+--------------+

now i don't understand, if i wanted to collect all users active in the last 5 minutes, how i would go about doing this because what the db does is stores them, and when they were last active. Any ideas on how to do it? (DB is MySQL) (PHP 4.3.11)

View Replies !
Users Online Help!
I have a column in my datasase and whenever you login, it sets it to "yes". The Users online just retrieves all users that have "yes" in that column. However, the only way to get the user off the Users Online list (make the column "no") is to go via logout. I don't want this to be the users only choice. I want the online column in the database to be set to "no" if they have been on a page for 30 minutes. Now I figured out most of the code, but I can't seem to find a way to track the number of minutes (or any time) that the user has been on the page. I tried incorporation JS but I can't get that to work. I tried cookie's but I got nothing. BTW: I'm using sessions so $_SESSION['online'] controls the online status.

Can someone please help me track the minutes the user has been on the page?

View Replies !
Who's Online - Timestamp
i am trying to make a "whos online" type thing. the following code returns all members as being online within the last 5 mins, but i dont think my "$last_hit" variable is working properly a when i return it i get "Resource id #3" i have tried:

$last_hit[0]
and
$last_hit[0][0]

but neither seem to work, anyone have any ideas ? PHP Code:

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved