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 strongm 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: casabella
  • Content: Threads
  • Order by date
  1. casabella

    Failed to initialize Policy Mange - How can I fix this?

    For the past few weeks I have been getting this error IFMS #: LOGIN: ERROR- Failed to initialize policy manager. (IFOR_PM_FATAL) The status from the policy manager daemon (PMD - /etc/ifor_pmd) indicates that a serious error condition has occurred. Login is allowed, but the system...
  2. casabella

    disabled text input field posts blank on submit - Why?

    I just came across this. I am intending to have a few fields that may or may not be editable. I use <input ... disabled> when applicable to keep users from editing the content. The problem is that when the form is submitted, the disabled fields are blank. What is up with that? Am I using the...
  3. casabella

    Problem changing innherHTML - Please help!

    I am having problem with a list box. Here is the JS var sa = '<SELECT NAME="title" id="titleID" onMouseOver="CheckEntityType()" onFocus="CheckEntityType()">'; var sb = '<OPTION VALUE="&nbsp;">&nbsp;</OPTION>'; var sb = '<option value="HEAD OF CORP./ENTITY">HEAD OF...
  4. casabella

    Query table A and return records not found in table B. Please help?

    Given table A and table B. Table A is a master table and table B is a list of authority or reference which is fed by selecting records from table A (via an UI I wrote in PHP). The interface is working fine but I am left with one problem. If I need to edit my table of authority, the source...
  5. casabella

    On window close, reload opener ... How can I do this?

    Working on a data grid table which opens a window where a record can be edited. Once record is edited, I would like to trigger a mechanism that reloads calling page. I have a CLOSE button which could be used to trigger the reload. I figure that if user closes clicking the X on upper right...
  6. casabella

    PHP and MS-SQL: Looking for advise ...

    I was just handed a project to write an UI in PHP to query MS-SQL database. I am just starting to get comfortable with MySQL. Is there too much difference or is it just a matter of which functions one uses? Which extensions do I need (php_msql or php_mssql)? Regards, Jose
  7. casabella

    How can I use image to submit form onClick?

    I am writing a search form. There are several fields the user will be able to use to search. I want to: 1) create a single form 2) associate an image to each field which onclick, submits form Does not sound complicated at all ... I just cannot get it to work. I have tried <img ...
  8. casabella

    Problem passing information to JS when string contains single quotes

    I have a page where a grid is defined. I give an option to remove a record by clicking an icon. The onClick looks like onClick='RemoveVendor("65","LARRY C O'STEEN, CPA")' As you can see, the name contains a single quote "O'STEEN". The function RemoveVendor fails when a record like this is...
  9. casabella

    onMouseOver=&quot;change cursor style = pointer&quot; How?

    I want to change my cursor from text to pointer when it is placed over a cell. How can I do this? Regards, Jose
  10. casabella

    How can I loop through an array?

    I wonder if I set a simple variable like $var = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; how to treat it as an array and loop through it to create a link for each letter of the alphabet? Regards, Jose
  11. casabella

    Showing and Hiding a div ... Can't get it to work... Please help!

    I have gotten this to more than once before but today it just does not want to work for me ... Here is the code <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Show and Hide</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">...
  12. casabella

    How can I check if var is contained w/in a string?

    Given variable named $var and a string "A~B~C~D~E", how can I find if $var content is contained within string? Thanks, Jose Lerebours
  13. casabella

    given date( ' H:i:s ' ), how do I set variable to 15 minutes prior?

    I need the algorithm to do time math. I need to run a query against entries time stamped 15 minutes ago or earlier. I am stuck getting the time stamp to work. I tried this: $a = date('H:i:s'); $b = '00:15:00'; $c = $a - $b; echo $a . '<br />'; echo $b . '<br />'; echo $c . '<br />'; and I...
  14. casabella

    Using AJAX + PHP to display logged users - Please help!

    I have a division within my main page <div id="chatUserList"></div> I have a JS /** * @author JPA */ var timer = null; var chatUser; var xo = null; var url = 'listChatUser.php'; function createObject(){ var browser = navigator.appName; if(browser == "Microsoft Internet Explorer"){...
  15. casabella

    How can I set iframe to automatically scroll to bottom?

    I am working on a chat room. I am using an iframe to display messages. So far, it all looks good. The problem I am having is that at the current time, text is shown top to bottom where the last message shows on top and older messages scroll down. I would like to reverse the scrolling or at...
  16. casabella

    Creating a chatroom - How to display typed text.

    If you were writing a chatroom, how do you show text typed by others users in one's screen? Regards, Jose
  17. casabella

    Treat query result as array - How?

    I have entered the world of arrays and I am revising some of the PHP scripts I've written and I want to use MD Arrays. So far, I have ran queries and display the results from _var where the query results are dumped. I have come to a point where this is not the best situation for me and I...
  18. casabella

    View Reocords (rows) one at a time

    I am working on a PHP script where a data grid is shown; from here, user can select a row (or record) which is then opened in a window. Once in the window, user can edit and save the record. Saving the record barely flashes and shows message saying that record has been successfully changed...
  19. casabella

    Query tables using A B C D ... links

    I have successfully written a data grid table in PHP where I allow user to view 50 rows per page. I show links like one normally sees Prev 1 2 3 4 5 6 ... Next to jump from page to page. I want to use A B C D E F ... to allow user to go directly to a group of records where KEY starts with...

Part and Inventory Search

Back
Top