[PHP] need manual reload on Mac client

2005-05-09 Thread Francesco Casalena
idea? Should be a browser (or JS) error or a PHP for Mac mistake? Regards, thanks in advance! Ciao, Francesco --- Scegli il tuo dominio preferito e attiva la tua email! Da oggi l'eMail di superEva e' ancora pi

Re: [PHP] GNU/Linux & MacOsX Server different behaviour

2004-09-29 Thread Francesco Casalena
^^^ >date -r 049250 +%a returns 'Sat'...ok ^^^ >date -r 049240 +%a returns 'Fri'...no! Sorry! Ciao Francesco --- Leggi la tua email con il tuo

Re: Re: [PHP] GNU/Linux & MacOsX Server different behaviour

2004-09-29 Thread Francesco Casalena
^^^ >date -r 049250 +%a returns 'Sat'...ok ^^^ >date -r 049240 +%a returns 'Fri'...no! Sorry! Ciao Francesco --- Leggi la tua email con il tuo

Re: [PHP] GNU/Linux & MacOsX Server different behaviour

2004-09-29 Thread Francesco Casalena
but: date -r 049231 +%a returns 'Fri'...ok date -r 049221 +%a returns 'Wed'...no! The behaviour is the same via Bash and via PHP script that invokes the shell...is it a my error or a X server bug? Regards, thanks! Ciao Francesco -

[PHP] GNU/Linux & MacOsX Server different behaviour

2004-09-28 Thread Francesco Casalena
correctly date string in both cases) On Linux result is correct (e.g.'Mon'), on Mac output is empty. Is it a PHP problem, a php.ini lack (on Mac) or a permissions problem? Or anything else? Regards, thanks! Ciao Francesco --

Re: [PHP] thumbnail of webpage

2004-09-18 Thread francesco[AT]automationsoft[DOT]biz
Hi Michael, read this (in italian) http://forum.html.it/forum/showthread.php?s=&threadid=694523&highlight=pillo la+upload - Original Message - From: "Michael Mao" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 18, 2004 1:54 AM Subject: [PHP] thumbnail of webpage >

Re: [PHP] Re: [PHP-General List] - Cron or script like Cron -

2004-08-15 Thread francesco[AT]automationsoft[DOT]biz
List] - Cron or script like Cron - > Don't mail me directly, no good comes from that. > > Anyway, see my answear below. > -Hannes > > From: "francesco[AT]automationsoft[DOT]biz" <[EMAIL PROTECTED]> > To: "Hannes Magnusson" <[EMAIL PROTECTED

[PHP] [PHP-General List] - Cron or script like Cron -

2004-08-14 Thread francesco[AT]automationsoft[DOT]biz
very appreciated. Thank's all. Francesco [EMAIL PROTECTED]

[PHP] Print page without images

2004-07-19 Thread francesco[AT]automationsoft[DOT]biz
Hi all, I know that it is a simple and maybe elementary question, but there is in PHP a function, like print or echo, that print only the text of an HTML page on printer? Thanks in advance for help.

[PHP] [PHP-General] - LOC/FP for PHP.

2004-06-03 Thread francesco[AT]automationsoft[DOT]biz
about PHP or scripting languages). Anyone know anything about this arguments? Thanks in advance and regards to all folks. Francesco [EMAIL PROTECTED]

[PHP] [PHP-General] - LOC/FP for PHP.

2004-06-01 Thread francesco[AT]automationsoft[DOT]biz
about PHP or scripting languages). Anyone know anything about this arguments? Thanks in advance and regards to all folks. Francesco [EMAIL PROTECTED]

[PHP] - Delete records in an Access DB

2004-05-01 Thread francesco
on line 11 Where is the problem? Is this the correct way to delete records from an Access DB? If this is a bad tecnic, can you suggest me what is the correct way? Thanks in advance to all. (The server where this script run is a Microsoft server). Francesco

[PHP] Re: [PHP-DB] Inserting date into a table

2004-04-24 Thread francesco
Hi Pambos, you can use the function date in this manner: date("YmdGis"); because the type TIMESTAMP has the following format: MMDDHHMMSS, where: =year like 2004 MM=month like 04 DD=day like 24 HH=hour like 10 MM=minutes like 24 SS=seconds like 33 in this case date("YmdGis"); has the out

[PHP] How to built desktop applications.

2004-04-05 Thread francesco
with example or link to resorces about this? Thanks in advance, Francesco [EMAIL PROTECTED]

[PHP] 500 Internal Server Error.

2004-03-08 Thread francesco
anyone help me about this questions? Thanks in advance Francesco [EMAIL PROTECTED]

[PHP] - Receive mail with PHP.

2004-02-28 Thread francesco
Hi all, i've two questions today: 1- it's possible to receive mail with PHP? There's in PHP a function (like mail()) for receive mail? 2- These's a tool for convet code in ASP in code in PHP? Thanks in advance for help. Frank [EMAIL PROTECTED] A&S Automation & Software - only solution

Re: [PHP] Send mail with attached

2004-02-23 Thread francesco
Thank you Karl for answer. Frank [EMAIL PROTECTED] www.automationsoft.biz - Original Message - From: "Karl Timmermann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 23, 2004 8:30 PM Subject: Re: [PHP] Send mail with attached > Check out phpmailer at http://phpmailer

[PHP] Send mail with attached

2004-02-23 Thread francesco
Hi all, is possible to send an email, with mail() function, with an attached? I see on www.php.net but there isn't nothing about this. If someone have the solution please send the solution. Thanks in advance. Frank [EMAIL PROTECTED] www.automationsoft.biz

[PHP] mcrypt don't work.

2004-02-08 Thread francesco
to.php on line 55 stringa cifrata= Warning: mcrypt_cfb(): Module initialization failed in /web/htdocs/www.automationsoft.biz/home/critto.php on line 58 stringa decifrata= I see, with phpinfo(), that my server support mcrypt and RIJNDAEL-256. I don't know why there is this error message.

[PHP] mcrypt don't work.

2004-02-03 Thread francesco
Hi all, i've problem with mcrypt_cfb function. This is the code: $string = "A simple text string"; $key = "My key"; line 55: $encrypted = mcrypt_cfb(MCRYPT_IDEA, $key, $string, MCRYPT_ENCRYPT); $key = "My key"; line 59: $string = mcrypt_cfb(MCRYPT_IDEA, $key, $encrypted, MCRYPT_DECRYPT); I've

[PHP] Create a new directory on server.

2004-01-31 Thread francesco
Hi all, is there in PHP a function that create a new directory on server? Regards, Frank www.automationsoft.biz

Re: [PHP] Integration between ASP & PHP.

2004-01-29 Thread francesco
OK, my problem is to use the crypt function (like md5(),sha1(),mcrypt(),crypt()) of PHP language in an ASP script. For example: <% First part of script in ASP language %> <% Second part of script in ASP language %> I don't know if this code is correct I don't try to use it, but this is what I w

[PHP] Integration between ASP & PHP.

2004-01-29 Thread francesco
Hi all, is possible to integrate script in ASP with script in PHP? How can I do this? All helps are precious. Best regards.

[PHP] Problem with mcrypt_encrypt and mcrypt_decrypt.

2004-01-28 Thread francesco
Hi all, i'm trying to crypt and decrypt password with the code below but i get many warnings Warning: mcrypt_get_iv_size(): Module initialization failed in /web/htdocs/www.automationsoft.biz/home/invio_mail.php on line 36 Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller i

[PHP] Function for crypt and decript.

2004-01-23 Thread francesco
Hi all, are in PHP, functions for crypt and decrypt string? I would to use this function in my script in PHP, how can I use this? I need of an example for use this and a list of this function. Thanks in advance.

[PHP] Re: PHP PDF Support...

2003-09-25 Thread Francesco
In the current issue of php|architect - an electronically distributed magazine, which you can find here http://www.phparch.com/ there is an article on printing with php. The magazine is not free, but is good value anyway. HTH Francesco "Brian M McGarvie" <[EMAIL PROTECTED]>

[PHP] mail function problem

2003-05-30 Thread Bersani Francesco
sn't work... Can anybody help me ? -- Francesco Bersani -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: URGENT HELP NEEDED - After Upgrade to MySQL 4.0.1.2

2003-02-13 Thread Francesco Leonetti
it happened to me something pretty similar when I upgraded to mysql 3.23.54a. While solving the problem, I suggest to uninstall mysql 4.0.1 and reinstall your previous working version (unless there's a real urge to upgrade to 4.0.1) and then try to upgrade to a devoloper server reinstalling not onl

Re: [PHP] File upload???

2003-02-11 Thread Francesco Leonetti
You need to check the following variables: $_FILES["userfile"]["tmp_name"]; $_FILES["userfile"]["size"]; $_FILES["userfile"]["name"]; $_FILES["userfile"]["type"]; Ciao Francesco - Original Message - F

Re: [PHP] Php 4.3

2003-02-10 Thread Francesco Leonetti
edit the php.ini file changing register_globals = On then restart httpd. When register_globals is set to "Off" you cannot access post or get variables in the usual way but you need to address the $_GET, $_POST array (or the general $_REQUEST). More details on the manual... - Original Mess

Re: [PHP] Is mail() broken in 4.3.0 when it comes to BCC?

2003-02-10 Thread Francesco Leonetti
Try this: mail("[EMAIL PROTECTED]", "My Subject", "Line 1\nLine 2", "From: [EMAIL PROTECTED]\nBCC: [EMAIL PROTECTED]"); - Original Message - From: "Mark Virtue" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 10, 2003 2:18 PM Subject: [PHP] Is mail() broken in 4.3.0 w

[PHP] a while loop that does't end with the script

2003-02-10 Thread Francesco Leonetti
usual? Am I missing something in the configuration files? Thank you for any help. Bye Francesco Leonetti -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Sessions problem

2002-06-24 Thread Francesco Chicchiriccò
ou can tell me the deeply hidden reasons? Thanks. -- ### dott. Francesco Chicchiriccò AX Digital Systems Via del mare 85/A 00040 Pomezia (RM) E-mail [EMAIL PROTECTED] Phone +39069180291 FAX +39069123658 Homehttp://chicchiri

[PHP] Computer Science and PHP

2002-01-17 Thread Francesco Gallarotti
I am a student in a college in NY state. Here we have several servers and dozens of courses on computer science. No server is PHP ready and no course instructor knows anything about PHP. Why do you think this is happening? I really like PHP and I am using it in my personal website to work with som

[PHP] Events in HTML with PHP

2001-02-08 Thread Francesco Rossi
Hi, How i can use the event OnChange of a tag for run a php script ? Es. Thank. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]