Page 3 of 3 FirstFirst 123
Results 21 to 25 of 25

Thread: Need a very simple word filter

  1. #21
    Join Date
    Nov 2010
    Posts
    31
    Thanks
    18
    Thanked 0 Times in 0 Posts

    Default

    Hello again,

    If i want to connect it with gtalk and msn what i should do?

  2. #22
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    You'll have to look to see if they have an API. Be aware it's very complex.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. The Following User Says Thank You to djr33 For This Useful Post:

    ntin0s (11-29-2010)

  4. #23
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    MSN: http://msdn.microsoft.com/en-us/wind.../ff759527.aspx
    GTalk: http://code.google.com/apis/talk/
    Quote Originally Posted by djr33 View Post
    Be aware it's very complex.
    Jeremy | jfein.net

  5. The Following User Says Thank You to Nile For This Useful Post:

    ntin0s (11-29-2010)

  6. #24
    Join Date
    Nov 2010
    Posts
    31
    Thanks
    18
    Thanked 0 Times in 0 Posts

    Default

    Done. Now I need if the user type quote it will randomly echo a quote from a text file that i have with quotes numbered Quote1 , Quote2 etc. It can be done?

  7. #25
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    PHP Code:
    <?php
    function quote($file){
        
    $split explode("\n"$file);
        return 
    $split[rand(0count($split)-1)];
    }
    echo 
    quote(file_get_contents("quotes.txt"));
    ?>
    quotes.txt:
    Code:
    Quote 1
    Quote 2
    Quote 3
    Quote 4
    Jeremy | jfein.net

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •