[PHP] is_dir() question

2005-09-26 Thread vlad georgescu
i have the code below ** *if ($dir = @opendir(dir2open)) { while($file = readdir($dir)) { //if (($file!='.') ($file!='..') ($file!='.htaccess') ($file!=' index.php')) { // if (is_dir($file)) { // print just . .. // if (is_file($file)) { // works fine if

[PHP] send email at certain hour

2005-06-25 Thread vlad georgescu
i want to make a reminder application which sends emails at certain hour in php. is this posibile ? if not, what else can I use ?

[PHP] url by mail

2005-06-04 Thread vlad georgescu
how can i send a webpage by mail ? i'v tryed something like that $fd = fopen ($url, r); $contents = fread($fd, 102400); print $contents; fclose ($fd); mail($adr,$url,$contents); but the message is blank :( what's the problem ?

Re: [PHP] link in ModalDialog

2004-11-16 Thread vlad georgescu
! -TG -Original Message- From: vlad georgescu [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 7:13 AM To: php-general Subject: [PHP] link in ModalDialog i'm working at some kind of HTLM editor for a web-page, and have in page, some js code which

[PHP] link in ModalDialog

2004-11-10 Thread vlad georgescu
i'm working at some kind of HTLM editor for a web-page, and have in page, some js code which showModalDialog('upload_img.php') and read the window return values and paste-it in page (text area). the upload_img.php uploads img and returns the value to pe paste in page (remote location of uploaded

[PHP] test if $int is integer

2004-06-29 Thread vlad georgescu
how can test if var $int is integer ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php