Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bataraguru

    Dynamic Column From List..

    thanks for your help... you really help me...
  2. bataraguru

    Dynamic Column From List..

    Hi, I manages to get this code from a tutorial site.. basically, i wanted to display exactly 3 columns from 3 CarID in the list. <Table border="1" width="100%"> <cfloop list="#Form.CarID#" index="ID" delimiters=","> <tr> <cfparam name="startrow" default="0"> <cfquery...
  3. bataraguru

    Session Dies if using Server name

    hmm.. for each of my protected page i will put code that will detected weather the user have been logged in or not. somehow i found that after setting session for loggedin = 1 and redirect to the secure page the session just die and it will bring to my default page where the redirection for...
  4. bataraguru

    Session Dies if using Server name

    yea, iknow about that.. but is there any difference using IP or server name? because from my experience if i'm using server name my session will die if i passed it to another page but if using IP address the session will be alive until it terminated. thanks..
  5. bataraguru

    Session Dies if using Server name

    hi, i'm currently doing a shopping cart system. i'm have experianced 2 wierd situation, especially for session variable. i'm creating a session for a user that successfully logged into the system. for the time beign i'm doing the system at local server. i'm using IIS as my webserver and SQL as...
  6. bataraguru

    SQL Query returns no value

    thanks for the reply GUJUm0deL, still dont solved my problems. I wonder why? Its there any restriction or format i have to declare in the GENERAL data type settings like Input Mask, Caption .. thanks..
  7. bataraguru

    SQL Query returns no value

    The format in the database = dd/mm/yyyy. using microsoft access dbase. checkin & checkout are defined as Date/Time. Thanks
  8. bataraguru

    SQL Query returns no value

    it should return 2 dates (1 & 3)
  9. bataraguru

    SQL Query returns no value

    thanks r937 & ksea for your suggestion.. sorry to say that the output still the same..
  10. bataraguru

    SQL Query returns no value

    oh yaa.. it should have 1 & 3. btw, using '##' did not solve my problem. and i have try using cfqueryparam just like below and still doesnt produce the output that i want. <cfquery name="chalet" datasource="OrangeCountryResort"> SELECT * FROM Reservation WHERE room = '#RoomNo#' AND (checkin...
  11. bataraguru

    SQL Query returns no value

    Hi, I'm having a problem with my query. <cfquery name="display_date" datasource="#dsn#"> SELECT * FROM reservation WHERE (checkin >= 03/05/2005 OR checkout >= 03/05/2005) AND RoomNo = 'SM001' </cfquery> Table reservation: checkin (date/time) checkout (date/time) RoomNo (char) 1.03/05/2005...
  12. bataraguru

    Need help on DateCompare

    Similar example of what i want to do. The one in the "Make a Reservation" part. http://www.northstarhotel.ie/home/index.php
  13. bataraguru

    Need help on DateCompare

    i so sorry if i have confused all of you or dont understand what is my problem. the system i want to develope is a room booking system. i have a form with check-in & check-out date and room type. i also have a table name 'booking' where there are also check-in & check-out date for the booked...
  14. bataraguru

    Need help on DateCompare

    anyone care to help?? thanks
  15. bataraguru

    Need help on DateCompare

    thanks, actually this is the checking module for room booking system. It is base on a date user entered in the "search room available" and that is room number, check-in & check-out date. onced user clicked the "check" button the system will check the whole booking table in the databse to find...
  16. bataraguru

    Need help on DateCompare

    Hi guys, I'm currently on a project for my company developing a resort booking system. So far this is what i've done, i know its really messy. 2 input from form 'ChkInDate' & 'ChkOutDate' and 2 input from database 'ChkInDate' & 'ChkOutDate'. The system should compare there date that user can...
  17. bataraguru

    Filtering only PDF file can upload.

    thanks, your code solve my problem. thanks dwarfthrower. -- bataraguru -
  18. bataraguru

    Filtering only PDF file can upload.

    Do you have the working code of that particular filter. I dont have any basics in javascripts. Sorry...
  19. bataraguru

    Filtering only PDF file can upload.

    Hi, I have setup a file upload form. The problem is i dont know how to allow only .pdf only to upload. Please help, its urgent. Thanks a million... -- bataraguru --
  20. bataraguru

    Sort date problem

    hi webmigit, Thanks for your help.. Forgot about the ASC and the DESC.. Thanks again..

Part and Inventory Search

Back
Top