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 TouchToneTommy 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: rejoice
  • Content: Threads
  • Order by date
  1. 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?
  2. 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...
  3. 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?
  4. 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.
  5. 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.
  6. 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... :-(
  7. 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...
  8. 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?
  9. rejoice

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

    Hi, everybody. I have a form with 2 buttons (Back and Next), I wish to make the Next button as default (means when user press Enter key, this button will be clicked). Is there any way I can do it?
  10. rejoice

    Value of Session var lost after calling HEADER()

    Hi! everybody. My problem is that the value of the SESSION_VAR in previous page will lost if I call header function. I test it localhost is ok, but cannot work in my web server. Is it something regarding the settings? Is there any alternatives? Is it safe for me to pass through URL? How to do...
  11. rejoice

    Mail Setting Problem

    My computer is connected within a workgroup and one of the computer serve as a proxy for us to send/receive our pop3 mail. It work fine with my outlook express. But, when I tried to put the setting in my php.ini, it does not work. Can anyone help me? By the way, I am using Win98 with Apache...
  12. rejoice

    Set Page Size

    I intend to make my page size to be 760X420, but I couldn't set the page size. the menu always disabled and the page size always to be 564X334. Can anyone help me how to solve this problem?
  13. rejoice

    LITE-ON LTR-16102B CD-RW not recognised

    I have tried several solution but I just could not make my CD-RW detected as CD-RW. It only shown up as CD-ROM and it does not display "Erase this disk" option, even I have tried modify the registry and IMAP services... and even update the fireware... it still does not work. What can...
  14. rejoice

    Dynamic SQL for Chart

    Can any one help me... I have created a line graph to show progress of different items within a period of time. Sometime user might want to show several item instead of all; OR, they want to set different date range. I can do this nicely in FORM, but when come to REPORT, it does not allow me...
  15. rejoice

    How to document a website?

    I'm planning to develop a dynamic content management website for my organization, but I have problem in documenting the idea/webpages. I have learnt some software engineering technique in documenting software, but it seem does not fit the needs of a website design. Can anyone suggest some of...
  16. rejoice

    32548 = I am stuck

    I'm having problem to startup Apache in my Windows XP. It shown up "32548: Only one usage of each socket address ... is notmally permitted...blah blah blah...." Help me... I am stuck now!!!

Part and Inventory Search

Back
Top