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 John Tel 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: kehers
  • Content: Threads
  • Order by date
  1. kehers

    using GDI object inplace of buttons

    is there any way i can use GDI objects like rectangles, strings,etc, call a onClick event handler..as in simulating window.forms.buttons?
  2. kehers

    Preloading a message while page loads

    using the following snippet to intimate a user that a certain task is been going on while the page loads : <script type="text/javascript"> <!-- Begin document.write('<div id="loading">task going on eg. Searching, please wait... </div>'); window.onload=function(){...
  3. kehers

    making a query not case sensitive

    how can i make a mysql query term not case sensitive..as in making the search for movies in the statement below not case sensitive select *, match(url, title, comment) against ('movies') as score from dir where match(url, title, comment) against ('movies') and subdir='$in'
  4. kehers

    Disappearing act?

    found out that when a bulk of codes comes between a mysql query and the mysql_fetch_array function, the result of the mysql_query statement dispappears ...as in something like below: //db connection $result = mysql_query($sql_statement); //some long lines of codes, statements, loops, etc...
  5. kehers

    php vs mysql fulltext

    using the mysql fulltext stunt within a php page to run a kinda search within my db. To be specific, here goes the query: select *, match(url, title, comment) against ('movies') as score from dir where match(url, title, comment) against ('movies') limit $somevariable, 10 using mysql_num_rows...
  6. kehers

    radiobuttons vs selectedIndex

    CAn one access radiobutton index as one does with select option index...as in something like document.formname.radiobutton.selectedIndex ?
  7. kehers

    Error compiling a lib

    A friend tried compiling a java library for me: waplet.jar and stressed it returned the error: exception in thread "main" java.lan.NoClassDefFoundError: waplet/jar. what could be wrong?
  8. kehers

    table column issues

    i av a table with a column containing categories some addresses belong to, occuring a number of times. i'd however luv to get each distinct category in the column with their number of occurence. As in something like this: ---------------+----- CategoryNameA | 5 ---------------+-----...
  9. kehers

    SQL table creation query

    how can one get the sql query with which a table was created?
  10. kehers

    wap Emulator applet

    I'm designing a kinda dir which includs wap sites. In a bid to enable viewing wap sites online, i need a wap emulator applet dat i can embed somewhere on the site. Any idea where i can get one from?
  11. kehers

    File upload handling...

    I'm tring to run a file upload script that goes this way: if($_POST['ad']){ print_r($_FILES);//just doing a little debugging trick here if(is_uploaded_file($_FILE['ad']['tmp_name'])){ if($_FILES['ad']['type'] == 'image/gif' || $_FILES['ad']['type'] == 'application/x-shockwave-flash'){ //trying...
  12. kehers

    Inactive buttons

    How do i make a form button (say submit for example) inactive in such a way that the text on the button (from its value attribute) is unhighlighted and clicking on the button does nothing.
  13. kehers

    Auto reminder

    I'm setting up an auto reminder on one of my pages whose function is to send a reminder mail to someone on the set date. the drawback however is that it's not automatic. the reminder page will av to be called on the set date before it can perform the function. Is there anyway to automate it such...
  14. kehers

    Rating

    I do see some online rating where members or visitors can rate articles(and stuffs like that). Any idea of how this works?I need it for some stuffs.
  15. kehers

    cookie problems

    i have a script dat goes this way ... foreach($_GET as $k => $gv) { $$k = stripslashes(trim($gv)); } if(!$pg){ $pg = 1; setcookie('query', $q); } ... however i got the error: Warning: Cannot modify header information - headers already sent by (output started at /var/www/ng/ngbot/search.htm:5)...
  16. kehers

    load data infile

    i'm trying to use the load data infile addin of mysql to load some text values to a table. unfortunaltety my verssion of mysql doesnt support it. As with all things, is there any other way to do this?
  17. kehers

    sql_calc_found_rows

    I'm trying to use sql_calc_found_rows to get the total number of results found from a sql statement that went dis way: select high_priority sql_calc_found_rows *, match(title, comment) against ('$q') as score from dir where match(title, comment) against ('$q') limit $somevariable, 10 and...
  18. kehers

    setTimeout

    In what unit is the parameter of the setTimeout function....is it seconds, microseconds or what? by the way, how many microseconds make a seconds (pardon my brainlessness)?
  19. kehers

    js regular expressions

    Not too familiar with regular expressions in javascript, so like looking for a sort of tutorial for a good headstart...any idea?
  20. kehers

    browsers and iframes

    Are ther certain browsers that doesnt support html iframes? if there are, would luv to know them.

Part and Inventory Search

Back
Top