[PHP] mail function and Bcc restriction?

2003-03-01 Thread Mirza Muharemagic
Hi all, are there any restrictions for mail function, when I use Bcc? how many email adresses can i put in Bcc, are there any PHP restriction, or just memory restriction, or something else? Thanx a lot Mirza [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/)

[PHP] mkdir() makes dir, but with wrong owner

2002-12-20 Thread Mirza Muharemagic
Hi, i had a few problems with mkdir() ane uploading files using php. i have a simple script, which is making a dir. but everytime, it makes a dir with totally wrong user. chown wont work. any expirience with this?? i have found some older posts considering this, but no real answer

Re[5]: [PHP] PHP and PDF

2002-07-01 Thread Mirza Muharemagic
Hi Jason, yes, in the theory is possible, but not it in the real life (for fre :) ). no, just joking, thanx for the information. very usefull. Mirza [EMAIL PROTECTED] 01.07.2002 20:38 > On Tuesday 02 July 2002 00:15, Mirza Muharemagic wrote: >> Hi Gregory, >> &g

Re: [PHP] help with regex in preg_match();

2002-07-01 Thread Mirza Muharemagic
Hi, something like this: $QUERY_STRING = "siteUserList.cgi?group=site177&2345"; if (preg_match("#siteUserList.cgi\?group=site177(&?[\d]*)#",$QUERY_STRING,$array11)) { echo "found: $array11[0]$array11[1]"; } Mirza [EMAIL PROTECTED] 01.07.2002 19:37 > H

Re: [PHP] mySQL time = year 2038 [HELP]

2002-07-01 Thread Mirza Muharemagic
Hi Shane, use SYSDATE(). Mirza [EMAIL PROTECTED] 01.07.2002 18:38 > Checked the archive and saw no difinitives... so... How come when I query my clients >mySQL DB and use NULL or NOW() as my default in a TIMESTAMP record that it always >comes up Jan 18, 2038? > Is the clock not s

Re: [PHP] uploading a file - here is the error message...

2002-07-01 Thread Mirza Muharemagic
Hi Phil, first thing u should do is to check permission of this directory (CHMOD). the 2nd one, u should replace function "copy" with "move_uploaded_file". than is should work. Mirza [EMAIL PROTECTED] 01.07.2002 19:13 > Here is the error I'm receiving when attempting to up

Re[3]: [PHP] PHP and PDF

2002-07-01 Thread Mirza Muharemagic
Hi Gregory, u mean, u want to update an existing PDF file? no, thats not possible. Mirza [EMAIL PROTECTED] 01.07.2002 18:07 > hello again. > thanks for the responses so far. > let me change something from my prevoius post. > let's say that i'm using an existing pdf form (i

Re: [PHP] uploading a file

2002-07-01 Thread Mirza Muharemagic
Hi Phil, your input file name should be "the_file" global $the_path_news, $the_file_name, $the_file, $the_path; if ($the_file_name) { if (!@move_uploaded_file($the_file, $the_path."/".$the_file_name)) {

Re: [PHP] blob versus file

2002-07-01 Thread Mirza Muharemagic
Hi andy, i tested it a few times, and there is actually no difference. why make it complicated, when it can be simple. my opinion is there is no difference. Mirza [EMAIL PROTECTED] 01.07.2002 14:17 > Hi there, > I am wondering if anybody has experiance in saving images to

Re[2]: [PHP] PHP and PDF

2002-07-01 Thread Mirza Muharemagic
Hi Brian, i have made a pretty nice script for creating pdf files using database data. thats pretty easy. the only thing u have to care about is to calculate the document size. Mirza [EMAIL PROTECTED] 01.07.2002 17:39 > if you're creating the form using PHP's PDF functions

Re: [PHP] Increment

2002-06-30 Thread Mirza Muharemagic
Hi Uma, when u make a query, make it for two rows. than show the 1st one, and per psot method send the id of the next row to the next query. $last_id = $_POST["id"]; $result = select id, yourcolumns from table ... limit $last_id, 2 $secondrow =

Re: [PHP] Generating RTF on the fly

2002-06-29 Thread Mirza Muharemagic
check this out: http://www.phpbuilder.com/columns/nair20020523.php3 Mirza -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php