[PHP-DB] file upload and php (Not a begginer question!)

2002-10-15 Thread Baroiller Pierre-Emmanuel
Hi, everyone know how to upload files from the browser to your web server using multipart-form method with move_downloaded_file() php function. But... It's a slow method for multiple files & huge files transfert. I'm currently working on a big photo album tool, and I want to provide user the ab

[PHP-DB] Re: Passing string variable to HTML TITLE tag fails within Netscape but works well within IE.

2002-10-16 Thread Baroiller Pierre-Emmanuel
your html is wrong... you must write : With the "head" tag, IE & Netscape will display your title correctly. Regards. P.E. "Darrian Walker" <[EMAIL PROTECTED]> a écrit dans le message de news: 01c274b9$2a10a1a0$[EMAIL PROTECTED] Passing string variable to HTML TITLE tag fails within

[PHP-DB] Re: losing my session variables

2002-10-29 Thread BAROILLER Pierre-Emmanuel
You only need to add session_start() in your script before storing your data into the $_SESSION array. Without session_start(), no session is started by php... Regards, P.E. Baroiller "Seabird" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > Hi everyone, > > I use a login

[PHP-DB] regular expression and exact word search...

2002-11-07 Thread BAROILLER Pierre-Emmanuel
Hi! does someone know how to find an exact word in a content with html tags ? I'm using a regexp like this : $searchRegEx = "'\b".$word_search."\b'msi"; to get boundary word results, but... if the searched word is like 'word or word. or anything else, the regular expression doesn't work.. if I