[PHP] socket_set_block(); - question

2002-07-24 Thread Micha
Hi, I found the function socket_set_block(); in ext/sockets/sockets.c (the function is not documented) and I tried to use it but it seems to doesn't take effect... Why doesn't this function work ? Am I doing something wrong ? Here is my code: function sockRead($length = 1) { soc

[PHP] Re: TOC protocol (AOL Instant Messenger)

2002-07-14 Thread Micha
You can find AIM/ICQ (Since some years ICQ uses the AIM protocol - OSCAR - too, the only difference is one packet where the ICQ client identifies it as an ICQ Client, not AIM) information on http://www.rejetto.com/icq :) I don't know anything about a PHP-AIM/ICQ project. As server you can use lo

[PHP] (Exact) Difference between -> and ::

2002-07-14 Thread Micha
Hi, I would like to know the exact difference between -> and ::. I know that I can use as class directcly by using :: but I still don't know the exact meaning So why do they use in Example 8 on http://www.php.net/source.php?url=/zend2_example.phps $this->id = self::$id++ and not self::id++ or

[PHP] Re: Variables aren't being passed to php page

2002-07-14 Thread Micha
This is no problem. Since PHP 4.2 register_globals is disabled by default (in prior versions it was enabled). Either you can use the $_POST, $_GET etc. arrays or simply set register_globals in the php.ini to "On" ! -micha Mike Heffner wrote: > Hi, > > I've recently up

[PHP] (Exact) Difference between -> and ::

2002-07-14 Thread Micha
ot self::id++ or $this->id++ ... ? -micha -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: value submit button

2001-07-24 Thread Micha
hi, example: << html file >> Your username: << php file >> if (isset($login)) { // Do login... } else if (isset($remove)) { // Remove user... } "Florian SchäFer" wrote: > Hallo out there, > > i hava an document, with one form and two Submit buttons. > How can i check in the target d

[PHP] Re: Can't add PHP4 module to Apache (win32)

2001-07-24 Thread Micha
hi, If you've installed PHP in c:\apps\PHP\ you must use LoadModule php4_module c:\apps\PHP\sapi\php4apache.dll (LoadModule php4_module c:/php/sapi/php4apache.dll won't work !) Arnaud wrote: > try to move the php4ts.dll library in C:\winnt\system32 > > Andrew Kirilenko <[EMAIL PROTECTED]> wrot

[PHP] Re: IE -> View Source

2001-07-26 Thread Micha
Steve Haemelinck wrote: > Some sites are able to disable the source view in ie. How do you do that? > > Haemelinck Steve > > Personal: > Haemelinck.be - Developers Unite :) > Junior WebDeveloper > http://www.haemelinck.com/ > [EMAIL PROTECTED] > > Work: > MCT IT Consulting - Take consulting 2 t

[PHP] enable/disable per directory

2003-06-30 Thread Micha Silver
Using apache 1.3.20 and php 4.0.2 Can I enable / disable posting of php scripts per directory? i.e. no php allowd from /home//public_html TIA Micha Silver Arava Development Co. tel: (972) 8-6592270 cellular: (972) 5-3665918 -- PHP General Mailing List (http://www.php.net/) To unsubscribe

RE: [PHP] enable/disable per directory

2003-06-30 Thread Micha Silver
Hello Jason: Thanks for the quick reply... > -Original Message- > From: Jason Wong [mailto:[EMAIL PROTECTED] > Sent: Monday, June 30, 2003 5:21 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] enable/disable per directory > > > On Tuesday 01 July 2003 00:12, Micha

Re: Re: [PHP] PHP and Windows XP

2001-06-29 Thread Micha Ober
Yes, it will work. I know somebody, who has installed Apache 1.3.20 and PHP 4.0.5. > --- elias <[EMAIL PROTECTED]> wrote: > > From pop_server."8745454"@pop.gmx.net Thu Jun 28 > > 17:53:33 2001 > > Return-Path: > > > <[EMAIL PROTECTED]> > > X-Flags: > > Delivered-To: GMX delivery to [EMAIL PRO

[PHP] PHP 4.0.6 and Apache 1.3.6 ?

2001-07-05 Thread Micha Ober
I've installed Apache 1.3.6 and PHP 4.0.6 and it works. But if I load an extension in the php.ini Apache says "abnormal program termination". = Linux... Because it works. __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http:

Re: [PHP] Number of the line ?

2001-07-06 Thread Micha Ober
That's easy :) Use __LINE__ ! example: 1 --- Emmanuel FAIVRE <[EMAIL PROTECTED]> wrote: > Hi All, > > i'm currently writing a debugging lib in PHP and i > would like to find > the number of the line in my script > > when i made an > > myfile.php > > 1 2 echo "i'm on line $NUMBER_LINE\n"; >

[PHP] Re (2): [PHP] PHP 4.0.6 and Apache 1.3.6 ?

2001-07-07 Thread Micha Ober
d-php .phtml AddType application/x-httpd-php-source .phps --- nelo manuel <[EMAIL PROTECTED]> wrote: > hi Micha, > > are you using the apache version 1.3.6-7? or just > 1.3.6, can you tell me if you can see your > php4 load and add module in > etc/httpd/conf/httpd.conf? &g

[PHP] loading data from database

2005-04-10 Thread Micha Biegnolé
Hi, I am a student of multimedia design. I have two tables in a database with one same column(column:Name). I ask data from table1 collumn:Name. In table2 I want to use the return of data from table1 and search table2 collumn:Name for other information. I tried joined SELECT, but it didn't work wi