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 Wanet Telecoms Ltd 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: *

  • Users: bataraguru
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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 --
  6. bataraguru

    Sort date problem

    Hi, I have a query to display latest 5 updated files. My output is like this: Updated Date Page Title 01/01/2004 Page2 04/06/2004 Introduction 10/06/2004 Introduction 11/02/2004 Page3 28/03/2004 Page4 the problem is, I want to sort like this (latest date on top): Updated...
  7. bataraguru

    login system

    hi, can anybody give a good guide or tutorial for a secure login system with session & cookies. i never develope any internet system (that requires login + session management + user identification). i spent my 3 years developing intranet apps (using NTchallenge).i think i'm stuck, got confused...
  8. bataraguru

    Error adding database to ODBC Data Sources

    Hi all, I'm using CF 5 Server, today I wanted to add new dbase to my datasource using CFAdmin but the server say there is an error. This is my first error adding dbase to ODBC datasource with error for CF Server for the past 2 years. ------------------------ Error Diagnostic Information An...
  9. bataraguru

    real-time input checking

    hi.. i'm doing my company inventory system. i want to do one thing that i dont know how to do it.. let say in an add item page i have a form. in that form have several input text box and one of them is name 'Serial_CPU'. i want the system to check in the database if the 'Serial_CPU' entered by...
  10. bataraguru

    Checked radio button with cfif

    Hi, I want to make a radio button checked on form load. I'm trying to use cfif, but I don't know whether my coding is correct or do I missed something. My server returns error on this code line. Here is my code: <cfinput name=&quot;mod_category&quot; type=&quot;radio&quot...
  11. bataraguru

    Realtime Text Editor

    Hi, I want to make the textfield editable realtime. For example in yahoo and hotmail. When you highlight a text and click &quot;bold&quot;, at the begining of the text highlighted will be added <b> and at the end will be added </b>. There are some WYSIWYG editor but all are rich text format. Or...
  12. bataraguru

    Make the dot dissapear in IP address

    Hi again, I have a problem to make the dot in IP address dissapear. Example: 172.32.10.111 I want to make this IP addr to be just 1723210111 <-- with no &quot;dot&quot; Can anybody help me? I know this is just number manipulation, but I cant find it anywhere.. please help... Thanks, - zack -
  13. bataraguru

    How to check the table name (dsn) exist

    Hi.. I want to check the table in my database exist before I create a new one. How can I do that? And how can i print out the table name using query?? Thanks, - zaidi - ------ <CFQUERY NAME=&quot;create_table&quot; DATASOURCE=&quot;car_select&quot;> --> I want to check if the table name...

Part and Inventory Search

Back
Top