php-windows Digest 8 Jun 2004 13:36:55 -0000 Issue 2276

Topics (messages 23925 through 23932):

Arrrrrrrrrrrg. Session management expert needed.
        23925 by: Ross Honniball

udp and tcp packet
        23926 by: William CANDILLON
        23927 by: William CANDILLON
        23928 by: William CANDILLON
        23929 by: William CANDILLON
        23930 by: Luis Moreira
        23931 by: Svensson, B.A.T. (HKG)

PHP extensions (dll's)
        23932 by: Gerardo Rojas

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
Sessions are driving me crazy.

I am tracking screens a user has visited using an array within the $_SESSION array.

And it nearly works.

I call session_start() before any output in each script and before trying to access any $_SESSION data.

The huge headache I am having is that php seems to fire up a NEW session in certain situations (the result being that it can NOT find the previous screens a user has visited).

Anyone had any similar problems and found a solution?

Regards ... Ross
.
. Ross Honniball. JCU Bookshop Cairns, Qld, Australia.
.

--- End Message ---
--- Begin Message ---
Hello,

Is there a way to send udp or tcp packet with php?
I don't find any library or extension which has this possibility.

Thanks in advance!

StorM

--- End Message ---
--- Begin Message ---
Hello,

Is there a way to send udp or tcp packet with php?
I don't find any library or extension which has this possibility.

Thanks in advance!

StorM

--- End Message ---
--- Begin Message ---
Hello,

Is there a way to send udp or tcp packet with php?
I don't find any library or extension which has this possibility.

Thanks in advance!

StorM

--- End Message ---
--- Begin Message ---
Hello,

Is there a way to send udp or tcp packet with php?
I don't find any library or extension which has this possibility.

Thanks in advance!

StorM

--- End Message ---
--- Begin Message --- William CANDILLON wrote:
Hello,

Is there a way to send udp or tcp packet with php?
I don't find any library or extension which has this possibility.

Thanks in advance!

StorM

  
You don't just "send" a packet. You send it it to an IP address, and there to a "port" or "socket".
If you go to www.php.net and search for "socket" you will find the related functions.
Notice, I haven't tried them myself, but if you look, they are there.

Luis

--- End Message ---
--- Begin Message ---
On Mon, 2004-06-07 at 08:43, William CANDILLON wrote:
> Hello,
> 
> Is there a way to send udp or tcp packet with php?
> I don't find any library or extension which has this possibility.


I haven't used sockets with PHP so I don;t know fo rsure, but in
general, if you open a socket as AF_INET it /will/ send tcp packages,
however if you want to build tcp or udp packages yourself, you need to
open a raw connection, and build the packages your self. To do this open
the socket in RAW mode, and then you can start pump data.

--- End Message ---
--- Begin Message ---
Is there a way to find out what extensions are loaded, at runtime?  I want to know if 
a certain dll is loaded or another one is loaded, so I can write my code accordingly.  

To be specific:  I want to know if the php_mssql.dll is loaded or the 
php_odbtp_mssql.dll has been loaded?  Any input would be appreciated.


--
Gerardo S. Rojas
mailto: [EMAIL PROTECTED]


--- End Message ---

Reply via email to