Re: [PHP] PEAR mail sorted as spam

2007-01-03 Thread Strong Cypher

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Could you send us header of your mail please, just to see the prob

Perhaps problem in sender : [EMAIL PROTECTED]

Or domain who send the mail : localhost.localdomain

I don't really know how thunderbird find some spam, that's why I prefer use
kmail + bsfilter :)

so ...

give us more information

We will help you perhaps :)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32) - WinPT 1.0.1

iD8DBQFFm5V7Eg3iyspSWPARAiixAJ96MuBkpZAlpgj1tMgE97NDURLMpQCfXq8W
rG2NqdH/F6nv97dv7IEZ8Ik=
=7gkI
-END PGP SIGNATURE-


Re: [PHP] Help me about detect client screen resolution!!!

2007-01-03 Thread Strong Cypher

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Just remember in web context is a server-side language ... so you couldn't
have more information than client would want to send to you

in web context, the navigator send some information to the server (like what
navigator, address, proxy, ...)

so ... has David show you, use javascript for example, and can your php
which screen resolution :

index.html:

script type=text/javascript
location.href=index.php?h=+screen.heigth+w=
+screen.width;
/script

= it will redirect to your php script which $_GET['h'] = heigth client
resolution, and $_GET['w'] = width client resolution

have fun
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32) - WinPT 1.0.1

iD8DBQFFm5XdEg3iyspSWPARAiwbAJ9bFE+m/oFAcka236Xnccjzb6YY/ACdFc8G
FuH5WvpqWEEkhMK0cYHhvOc=
=syLI
-END PGP SIGNATURE-


Re: [PHP] php 5 and register_globals=off gives lotsa errors

2007-01-03 Thread Strong Cypher

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

You said if(action==main)

So ... it's really that  or you would said if($action==main) ???

the $ is important so ... perhaps phpv4 ignore this kind of mistake and not
php5
or perhaps action is when register global is on ... so

if miss $ before var, add it, and try again

if not work .. send a piece of code

$action = $_GET[action];

if ($action == main) {
/*** do think ... ***/
}...

Have fun
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (MingW32) - WinPT 1.0.1

iD8DBQFFm5YqEg3iyspSWPARAmVnAJ9cATO6+9XCdz+WeH3Hgu3BeG3YjwCfdPFw
eNY6PAnmZIfjV7wGN//pMIs=
=opLP
-END PGP SIGNATURE-