
pollysal
Members-
Posts
24 -
Joined
-
Last visited
Never
Everything posted by pollysal
-
Hi everybody. right now i'm doing a hotel reservation system using php and phpmyadmin. The process involved 1) user inputs check-in and check-out dates (to check what rooms are available during the dates input) 2) database is queried for all room categories AVAILABLE within the dates indicated step 1 and 2 work out well using the query below : ( SELECT rt.roomtypeID, rt.roomtype, rt.roomprice FROM roomtype rt INNER JOIN room r ON rt.roomtypeID = r.r_roomtypeID WHERE r.room_status = 'available' AND r.room_no NOT IN ( SELECT b_room_no FROM booking WHERE checkin >= '2010-04-04' AND checkout <= '2010-04-06' ) GROUP BY rt.roomtypeID ) Then a problem arise.. How can I assign ROOM NO for any customer who has just make a reservation. I have a 'room table' and 'roomtype table'. right now when user make a reservation, i will assign them a random number based on the roomtype they had choose. example : roomtype Single=10 rooms, Deluxe=10 rooms, Suite=10 rooms. right now this is the only things that i can think right now.. (SELECT room_no FROM room WHERE r_roomtypeID ='single' AND room_status='available' ORDER BY RAND( ) LIMIT 1"); And it did work out. But then, i was thinking, how can i automatically assign the status of"unavailable" for the room no that was just assign to the customer who had just make reservation. So, next time if another customer wanted to make a reservation, the random number that will be selected will not involved the room that has status room_status='unavailable'. I appreciate any ideas, keyword too google for , or any articles that i can refer to in solving this matter:) here is my database: CREATE TABLE `booking` ( `bookingID` int(11) NOT NULL auto_increment, `b_ic_no` varchar(30) collate latin1_general_ci NOT NULL default '', `b_room_no` int(11) NOT NULL default '0', `checkin` date default NULL, `checkout` date default NULL, `nights` int(11) default NULL, `totalprice` int(11) default NULL, PRIMARY KEY (`bookingID`,`b_ic_no`,`b_room_no`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=7 ; -- -- Dumping data for table `booking` -- INSERT INTO `booking` (`bookingID`, `b_ic_no`, `b_room_no`, `checkin`, `checkout`, `nights`, `totalprice`) VALUES (1, '1111', 1, '2010-04-04', '2010-04-06', 2, 50), (2, '2222', 2, '2010-04-04', '2010-04-06', 2, 50), (3, '3333', 3, '2010-04-04', '2010-04-06', 2, 50), (4, '4444', 4, '2010-04-04', '2010-04-06', 2, 50), (5, '5555', 5, '2010-04-04', '2010-04-06', 2, 50), (6, '6666', 11, '2010-04-04', '2010-04-06', 2, 80); -- -------------------------------------------------------- -- -- Table structure for table `customer` -- CREATE TABLE `customer` ( `customer_id` int(10) NOT NULL auto_increment, `username` varchar(100) collate latin1_general_ci NOT NULL, `password` varchar(100) collate latin1_general_ci NOT NULL, `Name` varchar(100) collate latin1_general_ci NOT NULL, `ICNo` varchar(15) collate latin1_general_ci NOT NULL, `DOB` varchar(15) collate latin1_general_ci NOT NULL, `Address` varchar(100) collate latin1_general_ci NOT NULL, `TelNo` int(15) NOT NULL, `CompanyName` varchar(50) collate latin1_general_ci NOT NULL, `Occupation` varchar(50) collate latin1_general_ci NOT NULL, `Nationality` varchar(30) collate latin1_general_ci NOT NULL, `Email` varchar(50) collate latin1_general_ci NOT NULL, `level` int(4) NOT NULL default '2', PRIMARY KEY (`customer_id`,`ICNo`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=20 ; -- -- Dumping data for table `customer` -- INSERT INTO `customer` (`customer_id`, `username`, `password`, `Name`, `ICNo`, `DOB`, `Address`, `TelNo`, `CompanyName`, `Occupation`, `Nationality`, `Email`, `level`) VALUES (18, 'aaa', 'aaa', 'aaa', '1111', '', 'London', 1, '', 'engineer', 'chinese', 'aaa', 2), (19, 'sss', 'sss', 'sss', '2222', '', 'London', 222, '', '2222', 'chinese', '2222', 2); -- -------------------------------------------------------- -- -- Table structure for table `room` -- CREATE TABLE `room` ( `room_no` int(11) NOT NULL, `r_roomtypeID` int(11) default NULL, `room_status` varchar(100) collate latin1_general_ci default NULL, PRIMARY KEY (`room_no`), KEY `r_roomtypeID` (`r_roomtypeID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; -- -- Dumping data for table `room` -- INSERT INTO `room` (`room_no`, `r_roomtypeID`, `room_status`) VALUES (1, 1, 'unavailable'), (2, 1, 'unavailable'), (3, 1, 'unavailable'), (4, 1, 'unavailable'), (5, 1, 'unavailable'), (6, 1, 'available'), (7, 1, 'available'), (8, 1, 'available'), (9, 1, 'available'), (10, 1, 'available'), (11, 2, 'unavailable'), (12, 2, 'available'), (13, 2, 'available'), (14, 2, 'available'), (15, 2, 'available'), (16, 2, 'available'), (17, 2, 'available'), (18, 2, 'available'), (19, 2, 'available'), (20, 2, 'available'), (21, 3, 'available'), (22, 3, 'available'), (23, 3, 'available'), (24, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `roomtype` -- CREATE TABLE `roomtype` ( `roomtypeID` int(11) NOT NULL auto_increment, `roomtype` varchar(30) collate latin1_general_ci default NULL, `roomprice` int(11) default NULL, PRIMARY KEY (`roomtypeID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=6 ; -- -- Dumping data for table `roomtype` -- INSERT INTO `roomtype` (`roomtypeID`, `roomtype`, `roomprice`) VALUES (1, 'single', 50), (2, 'Twin Sharing', 80), (3, 'Deluxe', 100), (4, 'Superior', 130), (5, 'Suite', 150);
-
i have two table in my database which is the room table and roomtype table.i'm using phpmyadmin. room table room_no r_roomtypeID roomtype table roomtypeID roomtype how can i create a query that can select A random room_no from "room table " based on the roomtypeID in the "table roomtype" p/s - each roomtypeID got it's own quantity room no. roomtypeID room_no example : Single room : 1-10 : Deluxe room : 11-20 : Suite room : 21-30 right now i'm only having this kind of idea. the random number from room. I don't know how can i generate A random room_no from table room based on the roomtypeID. (SELECT room_no FROM room ORDER BY RAND( )LIMIT 1) any ideas is really appreciated:)
-
No data inserted into database. Am I wrongdoing it?
pollysal replied to pollysal's topic in PHP Coding Help
thanks to those who reply. ym_chaitu, i did use the code you give as reference, but it still not work out. Plus, it seems that it doesn't even insert any record into the database. do actually a button can only make a function. I mean that, one button for submit data to the database, and one button to go to the next page? this question might sound stupid, but i'm relatively just learn. so, if anyone please straighten me out if i'm wrong.. -
i have a form named:"RegistrationForm.php". when i click the "submit button", there's a data inserted in the database (the prove is, there a new row in the database), but there's no value from user textfield(ic_no,name,email...) that have been inserted. It means like there's a row of data inserted but without value.. p/s- however, when i click the submit button, it successfully directed me to the "BookingForm.php" with all the session value...it's just that there's no data inserted into the database. can someone straighten this up for me? am i doing wrong with the coding with the submit button? here's the code <?php session_start(); ?> <html> <body> <form action="BookingForm.php" method="post"> <p><strong>REGISTRATION FORM</strong></p> <table width="285" border="1"> <tr> <th width="120" scope="row">Ic No :</th> <td width="149"><label> <input type="text" name="ic_no" id="ic_no" value="<?php $ic_no; ?>"> </label></td> </tr> <tr> <th scope="row">Name :</th> <td><label> <input type="text" name="name" id="name" value="<?php $name; ?>"> </label></td> </tr> <tr> <th scope="row">Address :</th> <td><label> <input type="text" name="address" id="address" value="<?php $address; ?>" > </label></td> </tr> <tr> <th scope="row">Contact No :</th> <td><label> <input type="text" name="tel_no" id="tel_no" value="<?php $tel_no; ?>"> </label></td> </tr> <tr> <th scope="row">Email :</th> <td><label> <input type="text" name="email" id="email" value="<?php $email; ?>"> </label></td> </tr> </table> <input type="submit" name="submit" id="submit" value="Submit"> <?php $con = mysql_connect("localhost","root","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("ambos", $con); mysql_query("INSERT INTO customer (ic_no, name, address, tel_no, email) VALUES ('$_POST[ic_no]', '$_POST[name]', '$_POST[address]','$_POST[tel_no]','$_POST[email]')"); mysql_close($con); $_SESSION['ic_no']=$ic_no; $_SESSION['name']=$name; $_SESSION['address']=$address; $_SESSION['tel_no']=$tel_no; $_SESSION['email']=$email; ?> </form> </body> </html>
-
i'm sorry the the super moderater for my inappropriate post....please don't be mad...i'm seriously sorry sir.. i'm using the mysql phpmyadmin. here's the error that appear : #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'REFERENCES customer( ic_no ) , PRIMARY KEY ( b_room_no ) REFERENCES room( room_' at line 10 however, here the relationship table. or, am i actually wrong in definening the syntax to create a composite key relationship? [attachment deleted by admin]
-
i wanted to create a table name booking that have 3 composite key where 2 of the composite key is referring to each another table named customer and room. however when i wanted to create the table, it give me error. can someone tell me how can i fix this. Here's the command : CREATE TABLE booking( bookingID INT NOT NULL AUTO_INCREMENT , checkin DATETIME, checkout DATETIME, nights INT, totalprice INT, b_ic_no VARCHAR(30), b_room_no INT, PRIMARY KEY ( bookingID) , PRIMARY KEY ( b_ic_no ) REFERENCES customer( ic_no ) , PRIMARY KEY ( b_room_no ) REFERENCES room( room_no ), ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE = INNODB;
-
i have created a database for a room reservation. for this database i'm using mysql phpmyadmin. Right now it's just have the simple basic data that needed in the database. I hope someone can commeneted wether this database relationship look good or not...(eventhough i'm using mysql, i just make the ERD in access so that i can see relationship between the tables) especially part where the data relationship between the booking table and customer table. [attachment deleted by admin]
-
room availability not functioning...someone please give guidance..
pollysal replied to pollysal's topic in MySQL Help
thanks to andrew and ignace.. i finally manage to get the result that i wanted based on my query. i fix back my table especially at the part where the roomtypeID that have the conflict with the varchar. This is the final result of my query that gave me the result that i wanted. SELECT rt.roomtype, rt.roomprice FROM roomtype rt INNER JOIN rooms r ON rt.roomtypeID = r.roomtypeID WHERE r.roomID NOT IN ( SELECT roomID FROM booking WHERE checkin >= '2010-04-01' AND checkout <= '2010-04-06' ) GROUP BY rt.roomtypeID thanks again to anyone who reply. cheers!! -
room availability not functioning...someone please give guidance..
pollysal replied to pollysal's topic in MySQL Help
i would want the query to first, find the available room the checkin and checkout, then it will display the room available in the based on the table rooms that contains roomID and roomtypeID. Then, from the roomtypeID(frm table room) as a foreign key to the roomtypeID in the table roomtype, it will display the roomprice and roomtype from roomtype. The display of the roomprice and roomtype is really important as i want to sent the value of the roomtypeID to the next page of the php form by using id -
room availability not functioning...someone please give guidance..
pollysal replied to pollysal's topic in MySQL Help
//then, at this part- the end part, it will only show the availability room based on the roomtype and roomprice only.. select distinct roomtype, roomprice from roomtype where romtypeID IN //then, it wil show the available room based on the roomtypeID and roomID. (select roomtypeID, roomID from rooms where roomID NOT IN //at this part, i wanted to show the room availability, (select roomID froom booking where checkin>="2010-04-01" AND checkout<="2010-04-06")) -
i have just create 4 tables like below : CREATE TABLE customer( customerID INT NOT NULL AUTO_INCREMENT , name VARCHAR( 30 ) , address VARCHAR( 30 ) , tel_no INT( 15 ) , email VARCHAR( 30 ) , PRIMARY KEY (customerID) ) ENGINE=INNODB; CREATE TABLE roomtype( roomtypeID INT NOT NULL AUTO_INCREMENT , roomtype VARCHAR( 30 ) , roomprice INT( 30 ) , roombed INT( 15 ) , PRIMARY KEY ( roomtypeID ) ) ENGINE=INNODB; CREATE TABLE rooms( roomID INT NOT NULL AUTO_INCREMENT , roomtypeID varchar( 30 ) , room_no INT( 15 ) , PRIMARY KEY ( roomID ) , FOREIGN KEY ( roomtypeID ) REFERENCES roomtype( roomtypeID ) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE = INNODB CREATE TABLE booking( bookingID INT NOT NULL AUTO_INCREMENT , checkin DATETIME, checkout DATETIME, nights INT( 10 ) , totalprice INT( 100 ) , customerID INT, roomID INT, PRIMARY KEY ( bookingID ) , FOREIGN KEY ( customerID ) REFERENCES customer( customerID ) , FOREIGN KEY ( roomID ) REFERENCES rooms( roomID ) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE = INNODB i really got no idea how to only display the roomtype and roomprice from the table roomtype. I do really hope someone can help me as i have spent 5 hours only for this one query (yes..i admit i'm not talented in this stuff..), so please,if there's anyone can give any ideas for me to solve this... i do appreciate it so much... below is the query that i'm working on that never success : select distinct roomtype, roomprice from roomtype where romtypeID IN ( select roomtypeID, roomID from rooms where roomID NOT IN ( select roomID froom booking where checkin>="2010-04-01" AND checkout<="2010-04-06")) when i test it at phpmyadmin, the problem comes from the outter select which is the part "select distinct...". when i tested it, the subselect works fine..the problems comes from the select distinct part
-
i have just create 4 tables like below : CREATE TABLE customer( customerID INT NOT NULL AUTO_INCREMENT , name VARCHAR( 30 ) , address VARCHAR( 30 ) , tel_no INT( 15 ) , email VARCHAR( 30 ) , PRIMARY KEY (customerID) ) ENGINE=INNODB; CREATE TABLE roomtype( roomtypeID INT NOT NULL AUTO_INCREMENT , roomtype VARCHAR( 30 ) , roomprice INT( 30 ) , roombed INT( 15 ) , PRIMARY KEY ( roomtypeID ) ) ENGINE=INNODB; CREATE TABLE rooms( roomID INT NOT NULL AUTO_INCREMENT , roomtypeID varchar( 30 ) , room_no INT( 15 ) , PRIMARY KEY ( roomID ) , FOREIGN KEY ( roomtypeID ) REFERENCES roomtype( roomtypeID ) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE = INNODB CREATE TABLE booking( bookingID INT NOT NULL AUTO_INCREMENT , checkin DATETIME, checkout DATETIME, nights INT( 10 ) , totalprice INT( 100 ) , customerID INT, roomID INT, PRIMARY KEY ( bookingID ) , FOREIGN KEY ( customerID ) REFERENCES customer( customerID ) , FOREIGN KEY ( roomID ) REFERENCES rooms( roomID ) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE = INNODB i really got no idea how to only display the roomtype and roomprice from the table roomtype. I do really hope someone can help me as i have spent 5 hours only for this one query (yes..i admit i'm not talented in this stuff..), so please,if there's anyone can give any ideas for me to solve this... i do appreciate it so much... below is the query that i'm working on that never success : select distinct roomtype, roomprice from roomtype where romtypeID IN ( select roomtypeID, roomID from rooms where roomID NOT IN ( select roomID froom booking where checkin>="2010-04-01" AND checkout<="2010-04-06")) when i test it at phpmyadmin, the problem comes from the outter select which is the part "select distinct...". when i tested it, the subselect works fine..the problems comes from the select distinct part
-
can i insert value from another page into next page query
pollysal posted a topic in PHP Coding Help
i have 2 forms here. 1) DisplayDetails.php 2) RegistrationForm.php when user click to the link 'Next' at the DisplayDetails.php page it will bring all the session value to the RegistrationForm.php page. But, there's also value which is not session which is i) $room_type so, at the RegistrationForm, i wanted to passed all the values from the DisplayDetails.php into mysql query to insert into database.After i test it, all the data work fine including the session values from DisplayDetails.php. The only problem is, value which is i) $room_type that i got from the query in the DisplayDetails.php as the only that unsuccessfully inserted into the database. So, the question is, is it possible for me to get value from the DisplayDetails.php page into RegistrationForm.php page query so that i can insert the value into database. below is the code for DisplayDetails.php <?php session_start(); //echo "<pre>"; //var_dump($_SESSION); //echo "</pre>"; $id_no=$_GET['id_no']; $query="SELECT * from room1 WHERE id_no=$id_no"; $result=mysql_query($query); //Get the number of rows in array for loop $num=mysql_numrows($result); mysql_close(); $i=0; while ($i < $num) { $id_no=mysql_result($result,$i,"id_no"); $room_no=mysql_result($result,$i,"room_no"); $room_type=mysql_result($result,$i,"room_type"); $qty=mysql_result($result,$i,"qty"); $room_price=mysql_result($result,$i,"room_price"); //echo "$id_no - $room_no - $room_type - $qty - $rom_price"; $i++; } ?> <body> <h3><center> Room's Reservation </center></h3> <form action="DisplayDetails.php" method="post"> <table width="373" border="1"> <tr> <td colspan="2"><strong>Reservation Summary</strong></td> </tr> <tr> <td>Check In :</td> <td><label> <?php echo $_SESSION['checkin']; ?> </label></td> </tr> <tr> <td>Check Out :</td> <td><label><?php echo $_SESSION['checkout']; ?></label></td> </tr> <tr> <td>Rooms :</td> <td><label><?php echo $_SESSION['rooms']; ?></label></td> </tr> <tr> <td>Adults Per Room :</td> <td><label><?php echo $_SESSION['adults']; ?></label></td> </tr> <tr> <td>Children Per Room :</td> <td><label><?php echo $_SESSION['children']; ?></label></td> </tr> <tr> <td>Days :</td> <td><?php echo $_SESSION['days']; ?></td> </tr> <tr> <td>Room Type</td> <td><?php echo $room_type; ?></td> </tr> <tr> <td>Room Price</td> <td><?php echo $room_price; ?></td> </tr> <tr> <td>TOTAL PRICE :</td> <td><?php $total =$_SESSION['days'] * $room_price; echo $total;?> </td> </tr> </table> <label> <input type="submit" name="submit" id="submit" value="submit" /> </label> <a href="RegistrationForm.php"><strong> Next >> </strong></a> </form> </body> </html> below is the code for RegistrationForm.php <?php session_start(); ?> <html> <body> <form action="RegistrationForm.php" method="post"> <p><strong>REGISTRATION FORM</strong></p> <table width="285" border="1"> <tr> <th width="120" scope="row">Name :</th> <td width="149"><label> <input type="text" name="name" id="name" value="<?php $name; ?>"/> </label></td> </tr> <tr> <th scope="row">Ic No :</th> <td><label> <input type="text" name="ic_no" id="ic_no" value="<?php $ic_no; ?>"> </label></td> </tr> <tr> <th scope="row">Contact No :</th> <td><label> <input type="text" name="contact_no" id="contact_no" value="<?php $contact_no; ?>"> </label></td> </tr> <tr> <th scope="row">Email :</th> <td><label> <input type="text" name="email" id="email" value="<?php $email; ?>"> </label></td> </tr> <tr> <th scope="row">Gender :</th> <td><label> <select name="gender" id="gender" value="<?php $gender; ?>"> <option>female</option> <option>male</option> </select> </label></td> </tr> <tr> <th scope="row">Username :</th> <td><label> <input type="text" name="username" id="username" value="<?php $username; ?>"> </label></td> </tr> <tr> <th scope="row">Password :</th> <td><label> <input type="text" name="password" id="password" value="<?php $password; ?>"> </label></td> </tr> </table> <p> </p> <p> <label> <input type="submit" name="submit" id="submit" value="Submit"> </label> <?php $room_type=$_POST['room_type']; $sql="INSERT INTO reservation1 (name,ic_no, gender,checkin,checkout, room_type) VALUES ('$_POST[name]','$_POST[ic_no]','$_POST[gender]','$_SESSION[checkin]','$_SESSION[checkout]', '$_POST[room_type]')"; ?> </p> </form> </body> </html> -
Am i passing the session wrong way? can someone please check.
pollysal replied to pollysal's topic in PHP Coding Help
thanks Ruzzas for all the efforts to help me. yeah, the probs come from the wrongly flow of the code. I finaly realize that... you did really help knocked me some sense about the variables...i'm the one who doesn't make sense here with the code. thanks again!! -
how to combine textfield with counter variables
pollysal replied to pollysal's topic in PHP Coding Help
thanks wildteen88 for the reply... however, finally i managed to get the output that i wanted after configure it myself.. -
how to assign textbox value as variables in same page?
pollysal replied to pollysal's topic in PHP Coding Help
yeah..i finally realized that i don't need to use php since it's just need to run on the client side to get the days between two days. he..he..i'm still green in this web development, so i don't understand many stuff.. i'll look forward to learn ajax and javascript to implement what i wanted to do.. thanks for those who reply and provide me with the keyword that i needed.. -
Am i passing the session wrong way? can someone please check.
pollysal replied to pollysal's topic in PHP Coding Help
the variable $data actually come from here while ($data = mysql_fetch_array($result)): <tr> <td><?php echo $data['room_type']; ?></td> <td><?php echo $data['room_price']; ?></td> </tr> fuh..i do really need help here.. i wonder if i'm assigning it falsely to the array $_SESSION['room_price']=$data['room_price']; $room_price=$_SESSION['room_price']; $_SESSION['room_type']=$data['room_type']; $room_type=$_SESSION['room_type']; -
Am i passing the session wrong way? can someone please check.
pollysal replied to pollysal's topic in PHP Coding Help
at the findroom.php page there's this query like below $result = mysql_query("SELECT room_price, room_type from room1 WHERE room_no NOT IN ( SELECT id_room_no FROM reservation1 WHERE datein >='$datein' AND dateout <='$dateout')"); while ($data = mysql_fetch_array($result)): <tr> <td><?php echo $data['room_type']; ?></td> <td><?php echo $data['room_price']; ?></td> </tr> am i passing the wrong data to the session? -
Am i passing the session wrong way? can someone please check.
pollysal replied to pollysal's topic in PHP Coding Help
i try to trace the output based on the session using this cod : echo "<pre>"; var_dump($_SESSION); echo "</pre>"; it produce that this kind of result: array( { ["checkin"]=> string(12) " 2010-03-01" ["checkout"]=> string(12) " 2010-03-24" ["rooms"]=> string(1) "1" ["adults"]=> string(1) "1" ["children"]=> string(1) "1" ["days"]=> int(23) ["room_price"]=> NULL ["room_type"]=> NULL } it shows that my room_type and room_price which is the data that i wanted to take from the query at the page findroom.php is NULL. i wonderi if i'm using the right code to take the data from query is right or not? can someone tell me is this sysntax is right or not? $_SESSION['room_price']=$data['room_price']; $room_price=$_SESSION['room_price']; $_SESSION['room_type']=$data['room_type']; $room_type=$_SESSION['room_type']; or can someone tell me is it actually possible to take the data from the query and the make it as session variable? -
i have page findroom.php that will redirect to the page DisplayDetails.php. i wanted the DisplayDetails.php page to display data from the query in the page findroom.php. The data that i wanted to display from the query from page DisplayDetails is 'room_price' and 'room_type'. However, when i clik the Book Now link, it dosesnt't display the value. Since i'm just a starter in php, can someone tell me am i treating the session the right way as it doesn't diplay any result for the data that i wanted to take from the query in the findroom.php. But, for the the others data which is 'checkin', 'checkout' and others, it just show perfectly. I do hope if someone can tell me am i using the session in the right way or not. below is the code: findroom.php <?php session_start(); unset($_SESSION['error']); // echo variable from the session, we set this on our other page $_SESSION['checkin'] = $_POST['checkin']; //$_SESSION['checkin']=$checkin; $_SESSION['checkout'] = $_POST['checkout']; $_SESSION['rooms']= $_POST['rooms']; $_SESSION['adults']= $_POST['adults']; $_SESSION['children']= $_POST['children']; $days = (strtotime($_POST['checkout']) - strtotime($_POST['checkin'])) / (60 * 60 * 24); $_SESSION['days']=$days; $_SESSION['room_price']=$data['room_price']; $room_price=$_SESSION['room_price']; $_SESSION['room_type']=$data['room_type']; $room_type=$_SESSION['room_type']; ?> <html> <body> <form action="DisplayDetails.php" method="post"> <p> <?php //$result = mysql_query("SELECT id_no,room_type,room_price from room1 WHERE room_no NOT IN ( SELECT id_room_no //FROM reservation1 WHERE datein >='$datein' AND dateout <='$dateout')"); $result = mysql_query("SELECT room_price, room_type from room1 WHERE room_no NOT IN ( SELECT id_room_no FROM reservation1 WHERE datein >='$datein' AND dateout <='$dateout')"); ?> <?php /*if(isset($_POST['Check']) && $_POST['Check']=='Submit') { echo "The rooms availale on the date of :"; echo $datein; echo " until "; echo $dateout; } */ ?> </p> <p><strong><strong>Room Availbility</strong> </p> <td><table width="61%" height="64" border="1" cellpadding="0" cellspacing="0" bordercolor="#CC66CC" class="report2"> <tr> <td width="190" bgcolor="#E8E8E8"><div align="center"><strong>Room Type </strong></div></td> <td width="218" bgcolor="#E8E8E8"><div align="center"><strong>Room Price </strong></div></td> <td bgcolor="#E8E8E8"><strong>Task</strong></div></td> </tr> <?php //$counter=1; while ($data = mysql_fetch_array($result)): ?> <tr> <td><?php echo $data['room_type']; ?></td> <td><?php echo $data['room_price']; ?></td> <td width="153"><label><a href="DisplayDetails.php?id_no=<?php echo $data['id_no'];?>"><strong>Book Now</strong></a></label></td> </tr> <?php //$counter++; endwhile; ?> </table> <table width="373" border="1"> <tr> <td colspan="2"><strong>Reservation Summary</strong></td> </tr> <tr> <td>Check In :</td> <td><label> <?php echo $_SESSION['checkin']; ?> </label></td> </tr> <tr> <td>Check Out :</td> <td><label><?php echo $_SESSION['checkout']; ?></label></td> </tr> <tr> <td>Rooms :</td> <td><label><?php echo $_SESSION['rooms']; ?></label></td> </tr> <tr> <td>Adults Per Room :</td> <td><label><?php echo $_SESSION['adults']; ?></label></td> </tr> <tr> <td>Children Per Room :</td> <td><label><?php echo $_SESSION['children']; ?></label></td> </tr> <tr> <td>Days :</td> <td><?php echo $_SESSION['days']; ?></td> </tr> </table> <p> <label></label> </form> </body> </html> below is the code for : DisplayDetails.php <?php session_start(); $_SESSION['days']= $_POST['days']; $_SESSION['room_price']= $_POST['room_price']; $_SESSION['room_type']= $_POST['room_type']; // echo variable from the session, we set this on our other page //$_SESSION['checkin'] = $_POST['checkin']; //$_SESSION['checkout'] = $_POST['checkout']; //$_SESSION['rooms']= $_POST['rooms']; //$_SESSION['adults']= $_POST['adults']; //$_SESSION['children']= $_POST['children']; ?> <html> <body> <h3><center> Room's Reservation </center></h3> <form action="DisplayDetails.php" method="post"> <table width="373" border="1"> <tr> <td colspan="2"><strong>Reservation Summary</strong></td> </tr> <tr> <td>Check In :</td> <td><label> <?php echo $_SESSION['checkin']; ?> </label></td> </tr> <tr> <td>Check Out :</td> <td><label><?php echo $_SESSION['checkout']; ?></label></td> </tr> <tr> <td>Rooms :</td> <td><label><?php echo $_SESSION['rooms']; ?></label></td> </tr> <tr> <td>Adults Per Room :</td> <td><label><?php echo $_SESSION['adults']; ?></label></td> </tr> <tr> <td>Children Per Room :</td> <td><label><?php echo $_SESSION['children']; ?></label></td> </tr> <tr> <td>Days :</td> <td><?php echo $_SESSION['days']; ?></td> </tr> <tr> <td>Room Type</td> <td><?php echo $_SESSION['room_type']; ?></td> </tr> <tr> <td>Room Price</td> <td><?php echo $_SESSION['room_price']; ?></td> </tr> </table> </form> </body> </html> any kinds of help really apprecited
-
can someone help me by telling me why is that whenever i click the javascript calendar, it redirect me to another page eventhough i still do not finish fill the form? here is the code: <?php session_start(); $_SESSION['checkin']=$checkin; $_SESSION['checkout']=$checkout; $_SESSION['rooms']=$rooms; $_SESSION['adults']=$adults; $_SESSION['children']=$children; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-1.css" title="win2k-cold-1" /> <script type="text/javascript" src="Kalendar/calendar.js"></script> <script type="text/javascript" src="Kalendar/calendar-en.js"></script> <script type="text/javascript" src="Kalendar/calendar-setup.js"></script> <script type="text/javascript" src="Kalendar/ew.js"></script> <script type="text/javascript"></script> <title>SistemAPOS</title> <style type="text/css"> <!-- .style7 {color: #FFFFFF} .style8 { color: #000000; font-weight: bold; } .style10 {color: #FFFFFF; font-weight: bold; } .style11 {font-weight: bold} --> </style> </head> <body> <form action="findroom.php" method="post"> <p>Check Room Availability</p> <p>Check In <label> <input type="text" name="checkin" value="<?php $checkin ?>"/> <input name="datein" type="image" id="dateA" src="Kalendar/ew_calendar.gif" width="16" height="15" border="0" /> <script type="text/javascript"> </script> </strong> <script type="text/javascript">Calendar.setup( { inputField : "datein", // ID of the input field ifFormat : "%Y-%m-%d", // the date format button : "dateA" // ID of the button } ); document.write(ifFormat); </script> </label> </p> <p>Check Out <input name="checkout" type="text" id="checkout" value="<?php $checkout ?>"/> <input name="dateout" type="image" id="dateB" src="Kalendar/ew_calendar.gif" width="16" height="15" border="0" /> </strong> <script type="text/javascript">Calendar.setup( { inputField : "dateout", // ID of the input field ifFormat : "%Y-%m-%d", // the date format button : "dateB" // ID of the button } ); document.write(ifFormat); </script> </p> <p>Rooms : <label> <select name="rooms" id="rooms" value="<?php $rooms;?>"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </label> Adults Per Room : <label> <select name="adults" id="adults" value="<?php $adults;?>"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> </select> </label> Children Per Room : <label> <select name="children" id="children" value="<?php $children;?>"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> </select> </label> </p> <p> <label> <input type="submit" name="Check" id="Check" value="Submit" /> </label> </p> </form> </body> </html>
-
may i know if in php i can assign the textbox value from the user input as variables and then display the result of in the same page. assume, user insert the checkin and checkout date, then it wil automatically show the numbers of the day the user will stay at the hotel. any suggestion will really appreciates because i have no ideas what should i do ... below is the code <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-1.css" title="win2k-cold-1" /> <script type="text/javascript" src="Kalendar/calendar.js"></script> <script type="text/javascript" src="Kalendar/calendar-en.js"></script> <script type="text/javascript" src="Kalendar/calendar-setup.js"></script> <script type="text/javascript" src="Kalendar/ew.js"></script> <script type="text/javascript"></script> <title>SistemAPOS</title> <style type="text/css"> <!-- .style7 {color: #FFFFFF} .style8 { color: #000000; font-weight: bold; } .style10 {color: #FFFFFF; font-weight: bold; } .style11 {font-weight: bold} --> </style> </head> <body> <form action="findroom.php" method="post"> <p>Check Room Availbility</p> <p>Date In <label> <input type="text" name="datein" id="datein" /> <input name="datein" type="image" id="dateA" src="Kalendar/ew_calendar.gif" width="16" height="15" border="0" /> <script type="text/javascript"> </script> </strong> <script type="text/javascript">Calendar.setup( { inputField : "datein", // ID of the input field ifFormat : "%Y-%m-%d", // the date format button : "dateA" // ID of the button } ); document.write(ifFormat); </script> </label> </p> <p>Date Out <input type="text" name="dateout2" id="dateout" /> <input name="dateout" type="image" id="dateB" src="Kalendar/ew_calendar.gif" width="16" height="15" border="0" /> </strong> <script type="text/javascript">Calendar.setup( { inputField : "dateout", // ID of the input field ifFormat : "%Y-%m-%d", // the date format button : "dateB" // ID of the button } ); document.write(ifFormat); </script> </p> <p>Number of Days : Supposely this is the place where it will display how many days the user will stay</p> <p> <label> <input type="submit" name="Check" id="Check" value="Submit" /> </label> </p> </form> </body> </html>
-
how to combine textfield with counter variables
pollysal replied to pollysal's topic in PHP Coding Help
thanks wildteen88 for replying.. but still, i have some difficulties here. How can i make when i click the submit button, it will go to the page 'DisplayDetails.php' where on the page it will only display the row where i have insert value in the textfield? here's the current code : <html> <body> <form action="DisplayDetails.php" method="post"> <p> <?php mysql_connect("localhost","root","alifah89"); mysql_select_db("unik"); $datein=$_POST["datein"]; $dateout=$_POST["dateout"]; $result = mysql_query("SELECT distinct room_type,room_price from room1 WHERE room_no NOT IN ( SELECT id_room_no FROM reservation1 WHERE datein >='$datein' AND dateout <='$dateout')"); ?> </p> <p><strong><strong>Room Availbility</strong></p> <p> </p> <td><table width="61%" height="64" border="1" cellpadding="0" cellspacing="0" bordercolor="#CC66CC" class="report2"> <tr> <td width="38" bgcolor="#E8E8E8"><div align="center"><strong>BIL</strong></div></td> <td width="190" bgcolor="#E8E8E8"><div align="center"><strong>Room Type </strong></div></td> <td width="218" bgcolor="#E8E8E8"><div align="center"><strong>Room Price </strong></div></td> <td bgcolor="#E8E8E8"><div align="center"><strong>Quantity</strong></div></td> </tr> <?php $counter=1; while ($data = mysql_fetch_array($result)): ?> <tr> <td height="28"><center><?php echo $start + $counter?> </center></td> <td><?php echo $data['room_type']; ?></td> <td><?php echo $data['room_price']; ?></td> <td width="153"><label> <input type="text" name="qty<?php echo $counter; ?>" id="qty<?php echo $counter; ?>"> </label></td> </tr> <?php $counter++; endwhile; ?> </table> <p> <label> <input type="submit" name="submit" id="submit" value="Submit"> </label> </form> </body> </html> -
<html> <body> <p> <?php $result = mysql_query("SELECT distinct room_type,room_price from room1 WHERE room_no NOT IN ( SELECT id_room_no FROM reservation1 WHERE datein >='$datein' AND dateout <='$dateout')"); ?> </p> <p><strong><strong>Room Availbility</strong></p> <p> </p> <td><table width="61%" height="64" border="1" cellpadding="0" cellspacing="0" bordercolor="#CC66CC" class="report2"> <tr> <td width="38" bgcolor="#E8E8E8"><div align="center"><strong>BIL</strong></div></td> <td width="190" bgcolor="#E8E8E8"><div align="center"><strong>Room Type </strong></div></td> <td width="218" bgcolor="#E8E8E8"><div align="center"><strong>Room Price </strong></div></td> <td bgcolor="#E8E8E8"><div align="center"><strong>Quantity</strong></div></td> </tr> <?php $counter=1; while ($data = mysql_fetch_array($result)): ?> <tr> <td height="28"><center><?php echo $start + $counter?> </center></td> <td><?php echo $data['room_type']; ?></td> <td><?php echo $data['room_price']; ?></td> <td width="153"><label> <input type="text" name="qty" id="qty"> </label></td> </tr> <?php $counter++; endwhile; ?> </table> <p> <label> <input type="submit" name="submit" id="submit" value="Submit"> </label> <a href="DisplayDetails.php">Next>> </a></p> </body> </html> i'm really stuck here. May i know how can i combine the variables $counter with the textfield so whenever it's looping, the textfield will become text1, text2 , txt3 ? Hopefully someone can help me..