Re: [PHP] Website with a Instant Messenger

2004-09-28 Thread Ricardo Cezar

Raditha Dissanayake [EMAIL PROTECTED] escreveu na mensagem
news:[EMAIL PROTECTED]
 Ricardo Cezar wrote:

 Hello all,
 
 I want to put a instant messenger in a website. People connect to this
 website to stay in touch with each other. There is a photo album for
 everyone, a Forum, groups...
 
 The IM must work like ICQ, MSN and other, but via web. Users of the site
can
 add other users to the list, and when people log in their status go
ONLINE.
 Then we can open another window and chat, or send a message...


 Strange as it may seem. This is not asking too much. Jabber
 (http://www.jabber.org) can do all that. You will even find a couple of
 PHP classes to talk to a jabber server.

 Raditha Dissanayake.


Thanks Raditha. I will look jabber.org for some docs. :)


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Website with a Instant Messenger

2004-09-27 Thread Ricardo Cezar
Hello all,

I want to put a instant messenger in a website. People connect to this
website to stay in touch with each other. There is a photo album for
everyone, a Forum, groups...

The IM must work like ICQ, MSN and other, but via web. Users of the site can
add other users to the list, and when people log in their status go ONLINE.
Then we can open another window and chat, or send a message...

Nothing more than that.

Where can I start? I have no idea on how to do this... Any help?

Thanks,
Rics

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Website with a Instant Messenger

2004-09-27 Thread Ricardo Cezar
Well, I think everybody starts there, including me! :)
I´m searching google...

But thanks
:)



Jay Blanchard [EMAIL PROTECTED] escreveu na mensagem
news:[EMAIL PROTECTED]
[snip]
Where can I start?
[/snip]

http://www.google.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: gmail accounts

2004-09-20 Thread Ricardo Cezar
I have some invitations too! If you wants one, ask me off list.
Limited supply, first requests, etc, like Greg said!

Greg Donald [EMAIL PROTECTED] escreveu na mensagem
news:[EMAIL PROTECTED]
 I have some gmail accounts of anyone wants one.  Email me off list.
 Limited supply, first requests, etc..

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: OT gmail accounts

2004-09-20 Thread Ricardo Cezar
Sorry, will never happen again!

I was justing trying to help.   :(

Rick Fletcher [EMAIL PROTECTED] escreveu na mensagem
news:[EMAIL PROTECTED]
 Ricardo Cezar wrote:
  I have some invitations too! If you wants one, ask me off list.
  Limited supply, first requests, etc, like Greg said!
 
  Greg Donald [EMAIL PROTECTED] escreveu na mensagem
  news:[EMAIL PROTECTED]
 
 I have some gmail accounts of anyone wants one.  Email me off list.
 Limited supply, first requests, etc..

 Please stop talking about gmail invites on the list.  Anyone who wants
 one, or who has some to give away, just do a google search for a place
 to get or give them.

 Sites like this one (the 3rd result for free gmail invites) are acting
 as a proxy for free invites: http://isnoop.net/gmailomatic.php

 --Rick

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: A native Windows binding for PHP - released

2004-09-17 Thread Ricardo Cezar
I will wait WinBinder become mature and I will use it! I can´t use it now
because I´m not a very experienced programmer, and can´t do nothing without
the documentation to teach me! :(

But I loved your idea!

If it become PHP 5 compatible, and with a OO interface, it will be perfect.

Goood work!
Hugs,
Rics from Brazil

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] OO Docs for SQLite extension

2004-09-10 Thread Ricardo Cezar
Where can I find the docs for Constructor, Properties and Methods for the
SQLite extension? I search PHP.NET website but I can´t found it. I found
this information for mysqli only...

Thanks,
Rics

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] OO Docs for SQLite extension

2004-09-10 Thread Ricardo Cezar
I told:

I search php.net website

This page don´t have the docs for constructor, methods and properties. It
doesn´t have docs for OO programing with SQLite. Only procedural programing.
I´m looking for the OO docs...


Greg Donald [EMAIL PROTECTED] escreveu na mensagem
news:[EMAIL PROTECTED]
On Fri, 10 Sep 2004 16:20:21 -0300, Ricardo Cezar [EMAIL PROTECTED]
wrote:
 Where can I find the docs for Constructor, Properties and Methods for the
 SQLite extension? I search PHP.NET website but I can´t found it. I found
 this information for mysqli only...


http://www.php.net/sqlite


--
Greg Donald
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Force the download of .pdf or image files

2004-09-06 Thread Ricardo Cezar
How can I force the download of .pdf, .doc and image files? I have some
links to downloadable docs in my website, but when we click the links, IE
opens the file directly in the window. I wish when the user click a download
start, even if it is a .jpg, .gif, .pdf or .doc file.

There is a way to make that in PHP?

I have the idea do ZIP the files automaticly when my PHP script upload it to
the server, but can´t figure out how to make that.

Thanks,
Rics

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] OO Theory Question

2004-08-18 Thread Ricardo Cezar
Probably it’s a dumb question, but I’m new to OO Programming, so...

How can I store the instance of the class in the session

Thanks,
Rics


Thomas Goyne [EMAIL PROTECTED] escreveu na mensagem
news:[EMAIL PROTECTED]
 On Tue, 17 Aug 2004 12:25:42 -0600, Jed R. Brubaker [EMAIL PROTECTED]
 wrote:

  The real reason for having the login class like this is to eliminate
  database calls. I thought I could have one session variable that said yo
  uwere logged in, but then the database calls would still have to be made
  on
  each page.
 
  Thanks for the idea - any others?
 
 

 Just store the instance of the class in the session.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php