[PHP-WIN] problem with MAIL and BCC

2001-06-21 Thread Delbono
Hello, I tried to use BCC in may mail() but it doesn't work. Server is Win2k Also CC has problems ... If I send to: To: [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Then if I download my mails, I can see: CC: [EMAIL PROTECTED] but the CC is not delivered (also on valid email address..)

Re: [PHP-WIN] system(), Access is denied

2001-06-27 Thread Delbono
> > system("e:\\tmp\file.bat") > > but it gives me "Access is denied try please: > > system("e:\\tmp\\file.bat") furthermore: if you call the script from the server way.. "http://localhost/executeme.php"; you have to either 1. Login to the machine as a user with "execute" Permission on th

[PHP-WIN] mssql insert weird.

2001-12-10 Thread Delbono
res = mssql_query($q,$id); echo "Last query was: [ " . $q . " ]"; echo "Last message was: [ " . mssql_get_last_message() . " ]"; if ($res) { echo "OK"; } else { echo "NO!"; } "OK&q

Re: [PHP-WIN] Time - WINCRON is for windows

2001-03-30 Thread Delbono
WinCron is what you are looking for. http://www.erols.com/graysteel/wincron.html I'm using it and it works correctly. - Original Message - From: "Josh Seward" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "php-gtk" <[EMAIL PROTECTED]> Sent: Saturday, March 31, 2001 5:21 AM Subject

RE: [PHP-WIN] random elements of an array

2002-03-26 Thread Nicola Delbono
: [EMAIL PROTECTED] >>> >Subject: [PHP-WIN] random elements of an array >>> > >>> > >>> >Hi, >>> > >>> >My problem is: if I have an array (e.g. 1, 2, 3, 4, 5, 6, 7, >>> >8, 9), how I can "shake" the array and get randomized order

Re: [PHP-WIN] String reduce

2002-04-12 Thread Nicola Delbono
s Mailing List (http://www.php.net/) >To unsubscribe, visit: http://www.php.net/unsub.php dr. Nicola Delbono [EMAIL PROTECTED] Key5 di Delbono Nicola V. G.M. Rossi, 12 25038 Rovato (Bs) Tel 39 030 7242266 Fax 39 030 7242266 www.smscitta.com | www.musicalbox.it www.filosofo.it | www.bollicine.com -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] String reduce

2002-04-12 Thread Nicola Delbono
", "", $str); Mot1_;Mot2_;Mot3_;Mot4_;Mot5_;Mot6 then becomes $str = str_replace("_;", ";", $str); Mot1;Mot2;Mot3;Mot4;Mot5;Mot6 It's horrible but it works... ( yet I didn't test it ) Bye *** REPLY SEPARATOR ***

[PHP-WIN] preg_replace or ereg_replace.. or something

2002-05-11 Thread Nicola Delbono
would become [1]Hello, [2]this is my [3]first [4]brilliant [5]page on the web. Hey [6]what an [7]amazing [8]thing. I'm getting crazy with escapes and tags.. Thanks Nicola Delbono /// Il notiziario dei notiziari http://www.not

Re: [PHP-WIN] PEAR Library?

2002-05-14 Thread Nicola Delbono
try c:/php4/PEAR >Is there a particular directory that is considered the PEAR library in the Nicola Delbono /// Il notiziario dei notiziari http://www.notiziarioweb.it/ /// www.smscitta.com | www.musicalbox

Re: [PHP-WIN] Mysql socket error :\

2002-06-22 Thread Nicola Delbono
rd to "admin"? Can you connect via console? (dos prompt) NB: Php 4.1.2 is crackable. Upgrade to 4.2! Occhio che il php 4.1.2 รจ buggato. Nicola Delbono /// Il notiziario dei notiziari http://www.notiziarioweb.it/ ///

Re: [PHP-WIN] Re: "weeks" via date function

2002-07-22 Thread Nicola Delbono
gt;> today's date (19 July 2002) it should return "29" (this being the >> 29th week of 2002). Nicola Delbono /// Il notiziario dei notiziari http://www.notiziarioweb.it/ /// www.smscitta.com | www.mu

[PHP-WIN] mssql on linux

2002-07-25 Thread Nicola Delbono
o any nested query also.. Any help is gold.. Nicola Delbono /// Il notiziario dei notiziari http://www.notiziarioweb.it/ /// www.smscitta.com | www.musicalbox.it www.filosofo.it | www.bollicine.com -- PHP Windows Ma

Re: [PHP-WIN] Use sockets under windows

2001-11-18 Thread Delbono Nicola
Hello. I thought Sockets Under win didn't work.. maybe you can try with this other script: http://marc.theaimsgroup.com/?l=php-general&m=98225134721753&w=2 - Original Message - From: "Walter Gyr" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 8:59 AM Subje

Re: [PHP-WIN] Stripping filepath from string

2001-10-09 Thread Delbono Nicola
I created this function http://www.key5.com/demo/getpath/getpath.php3 Take a look. Be careful that sometimes you must use (-4) to get the -second level of path. - Original Message - From: "Christian Sandfeld" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 09, 200

Re: [PHP-WIN] header functions and ... ?

2002-12-23 Thread Nicola Delbono
>i cannot use header because the headers are already sent. You can use content buffering look at ob_start() with that, you can print or echo whatever you want and, at the middle or end of the script you can send any header you like because in fact you have not send any data to the browser