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 SkipVought 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. rejoice

    Text Scramble

    Thanks. Stupid me :-P
  2. rejoice

    Text Scramble

    Suppose user enter some text into a form. The text has different line and spaces in between. But when he submit the form, my $HTTP_POST_VARS['textEntry'] scrambled all the text into one line. How can I make the text not scrambled/combine together into one single line?
  3. rejoice

    error reporting mulfunction

    I put code: error_reporting(E_ALL^E_NOTICE); $str .= "abc"; echo $str; -- does not trigger warning message, but: error_reporting(E_ALL^E_NOTICE); set_error_handler("myOwnHandler"); -- trigger warning message, how come? My question is that I turn off the warning report but how come it still pass...
  4. rejoice

    Terminate previous header

    Well, I need to design my own error handler function. Whenever error occur, I hope this function not only can keep the error log, but also direct user to another page. I tried to put header() in this function, but in some cases, it popup the message saying the header already been sent...
  5. rejoice

    Terminate previous header

    Can anyone know how to terminate previous header that has been sent out half way, and then use header() to direct the user to another URL?
  6. rejoice

    Hide URL variable without using frame

    Can anyone teach me how to hide my HTTP_GET_VARS in the url address, without using the frameset method? I tried to use header() to call self page, but it just could not work... why??? Thanks.
  7. rejoice

    Smarty with Page Expires

    oic. By the way, why should we use META tag? instead of Javascript? Can Javascript force the page refresh?
  8. rejoice

    Smarty with Page Expires

    Can we put something in HTML page to expire the page? If yes, how would the code look like?
  9. rejoice

    Smarty with Page Expires

    Does anyone know how to generate a page with smarty and the page has an expiry date? How can we check whether this function has taken effect? source: header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); Many thanks.
  10. rejoice

    Encryption PHP Script

    Thanks :-)
  11. rejoice

    Encryption PHP Script

    Is there any PHP script that can help me to generate a fix length cipher text and decrypt it as well? By the way, my server does not support any DES, AES, mcrypt...etc that provided by PHP... :-(
  12. rejoice

    How can I call sub-query?

    Thanks, but harsh :-(
  13. rejoice

    How can I call sub-query?

    How can I call sub-query in MYSQL? For example: SELECT * FROM pr_groups WHERE pr_groups.group_id=(SELECT groups_id FROM pr_items) Besides, does mySQL allow creation of query file like MS-Access, so that I can call the query file from another query statement. For example: SELECT * FROM...
  14. rejoice

    127.0.0.1 can but localhost cannot

    I tried to save it as hosts, but it still cannot solve the problem.
  15. rejoice

    127.0.0.1 can but localhost cannot

    I manage to find the hosts.sam only. The other one not found. Can you let me know what's the content?
  16. rejoice

    127.0.0.1 can but localhost cannot

    I am using Windows 98SE with all the critical updates. Apache 2.0.47
  17. rejoice

    127.0.0.1 can but localhost cannot

    ServerName localhost What should I do with the Lmhosts.sam and hosts.sam file? The content of hosts.sam ========================= # Copyright (c) 1998 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP stack for Windows98 # # This file contains the mappings of IP...
  18. rejoice

    127.0.0.1 can but localhost cannot

    I have checked the C:\Windows\host.sam the entry is correct. Any other posibility?
  19. rejoice

    127.0.0.1 can but localhost cannot

    When I access http://127.0.0.1, I can see the Apache test page. But, when I access http://localhost, the test page does not appear and wait until timeout. Can anyone tell me how to fix it?
  20. rejoice

    How can I set any button of the form as default?

    Instead of using Javascript I just place my SUBMIT (any button) button on the left most of other buttons. It will be click whenever user press ENTER key.

Part and Inventory Search

Back
Top