Re: [PHP] High bandwidth application tips

2003-11-06 Thread Radu Manole
Hi all, I do have a question about optimizing the php for large applications. Many applications group the functions in files (eg. functions.inc.php) or build classes, and these files/classes are called with 'require' or 'include' on the top of each main file. What would be the speed penalty if

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Radu Manole
here is a link that might help http://www.macromedia.com/support/ultradev/ts/documents/client_dynamic_listb ox.htm Radu - Original Message - From: Robb Kerr [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 5:59 PM Subject: Re: [PHP] Menu populated based on

Re: [PHP] Can Objects be passed to another page?

2003-09-03 Thread Radu Manole
using serialize might work - Original Message - From: Marco Schuler [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 3:37 PM Subject: Re: [PHP] Can Objects be passed to another page? Hi there MuToGeN wrote: No, arrays can be passed (input

Re: [PHP] Re: Using PHP to cache a flash movie

2003-08-31 Thread Radu Manole
You can try to place the swf into a frame or div so browser will cache it. The next request will read the swf from cache (assuming that you are not requesting the flash file using some variables) - Original Message - From: Catalin Trifu [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

[PHP] One set of php for multiple subdomains

2003-03-17 Thread Radu Manole
Hi guys, I have 2 scripts located in a directory and 3 dirs with 3 subdomain. Something like this. /scripts - input.php - output.php /user1 - subdomain user1.mysite.com /user2 - subdomain user2.mysite.com /user3 - subdomain user3.mysite.com What can I do to execute the input.php

[PHP] session.use_trans_sid on php 4.3.1

2003-02-27 Thread Radu Manole
Hi guys , Seams like ini_set('session.use_trans_sid',0) does not work right on PHP 4.3.1 on Linux. //-- PHP config is: './configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--with-curl' '--with-swf=/usr/local/flash'

[PHP] Strings and regular expression?

2003-02-07 Thread Radu Manole
Hi guys, I have 2 strings $a1=1,8,98,244,9,243,2,6,36,3,111,; $a2=8,98,244,9,243,2,1,6,36,3,111,; How can I exactly match 1, in both strings using one regular expression? (first 1 is the first element and second time in a random position)? Thanks, Radu -- PHP General Mailing List

[PHP] Update identical table

2002-09-28 Thread Radu Manole
Hi guys, I have 2 identical tables called tmp_data and data. (on the same mysql database). What would be the simple and more convenient way to update table data with a row from table tmp_data. (something like select * from tmp_data and than update data ...). Thanks a lot, Radu

[PHP] Remote file download and https

2002-09-04 Thread Radu Manole
Hi Guys, I'm trying to create a transparent download using a script (the script would run from my local machine) that will request a file from a remote server, that looks like this (https request): https://www.httpsserver.net/Pages/Download.asp?usr=testpass=testfrom=05/01 /02to=09/03/02 This

[PHP] Embeding images in HTML emails

2002-08-20 Thread Radu Manole
Hi, Does anyone know how to embed images in HTML emails in order to avoid a server request (no img src=http://server/foo.img;)? Is this possible? Many thanks, Radu -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php