Re: [PHP] Re: Browser could not get mp3 files from http site

2008-09-24 Thread hce
On Wed, Sep 24, 2008 at 9:56 AM, Richard Lynch <[EMAIL PROTECTED]> wrote: > As a general rule, check what happens when you do wget -S on the URL and see > what the browser sees. Thanks Richard and all responses. That was the best PHP and HTML debug I've learned so far. I always find it is difficu

Re: [PHP] Re: class const versus define

2008-09-24 Thread Chris
the define function is to be used on the global scope of your application. This is helpful to assign Configurations Options and other data that you do not will move. For the Class Constants you define the Constant only fo the Class where you are working. Please read the documentation about th

[PHP] Re: Using Static Class Variables to Access Globally

2008-09-24 Thread Colin Guthrie
Nathan Nobbe wrote: in many cases, people like to drive client code through methods, which, given the current set of language features in php, could be reason to favor a singleton w/ __get() & __set() methods defined. you still have the same 'global' scope, except that the data doesnt have to be

Re: [PHP] class const versus define

2008-09-24 Thread Jochem Maas
Richard Lynch schreef: Is there any reason why the logic behind define() couldn't be pushed down to class const? probably no reason why it couldn't but from what I gather there is a specific reason wht it works like this: speed. const is compile time, define is runtime IIRC const was made th

Re: [PHP] How to detect the host (window or Linux)?

2008-09-24 Thread hce
On Mon, Sep 22, 2008 at 4:04 PM, Thodoris <[EMAIL PROTECTED]> wrote: > >> $win = stripos(PHP_OS, 'win') !== false ? true : false; > Perhaps you could also use this as an alternative: > > http://gr.php.net/manual/en/function.php-uname.php Thanks Thodoris and Anderson. Sorry for not clear about the

[PHP] Google Checkout

2008-09-24 Thread Richard Heyes
Hi, As a follow up, I've just switched from Paypal to Google Checkout. Setup was quick and pain free (easily less than 2 hours), and I would recommend it (so far). Like other people have said though, it's just UK and USA at the moment. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and S

Re: [PHP] Google Checkout

2008-09-24 Thread Stephen Wellington
I'm looking at using this myself for an upcoming project.. Do you know if they force customers to sign up with a google account before processing or can they just put in card details and be done with it? Thanks, Steve On Wed, Sep 24, 2008 at 10:59 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: > Hi,

Re: [PHP] Re: Browser could not get mp3 files from http site

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 17:03 +1000, hce wrote: > On Wed, Sep 24, 2008 at 9:56 AM, Richard Lynch <[EMAIL PROTECTED]> wrote: > > As a general rule, check what happens when you do wget -S on the URL and > > see what the browser sees. > > Thanks Richard and all responses. That was the best PHP and HTM

Re: [PHP] The Data Literacy Test

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 09:20 +0800, Shelley wrote: > The > Data Literacy Test: > > http://www.phparch.cn/index.php/php/34-php-basics/202-the-data-literacy-test > What the smeg is this? Ash www.ashleysheridan.co.uk -- PH

[PHP] spreadsheets are opened read only

2008-09-24 Thread Thodoris
Hi guys. I am having a problem with opening xls files from a link generated from php script. Let me analyze this: I have two linux servers with apache (php,mysql etc) that are running the same project. There is a part in this project that reads all the files from a directory and generates th

Re: [PHP] How to detect the host (window or Linux)?

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 19:01 +1000, hce wrote: > On Mon, Sep 22, 2008 at 4:04 PM, Thodoris <[EMAIL PROTECTED]> wrote: > > > >> $win = stripos(PHP_OS, 'win') !== false ? true : false; > > Perhaps you could also use this as an alternative: > > > > http://gr.php.net/manual/en/function.php-uname.php >

Re: [PHP] Google Checkout

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 11:08 +0100, Stephen Wellington wrote: > I'm looking at using this myself for an upcoming project.. > Do you know if they force customers to sign up with a google account > before processing or can they just put in card details and be done > with it? > Thanks, > Steve > > On

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 14:28 +0300, Thodoris wrote: > Hi guys. I am having a problem with opening xls files from a link > generated from php script. Let me analyze this: > > I have two linux servers with apache (php,mysql etc) that are running > the same project. There is a part in this project t

Re: [PHP] $this->value VS $value

2008-09-24 Thread Eric Butera
On Tue, Sep 23, 2008 at 7:30 PM, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > On Tue, Sep 23, 2008 at 5:25 PM, Eric Butera <[EMAIL PROTECTED]> wrote: >> >> I generate my data access objects too. It goes against my better >> judgment, but performance wins out in this specific situation. > > getting of

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Thodoris
On Wed, 2008-09-24 at 14:28 +0300, Thodoris wrote: Hi guys. I am having a problem with opening xls files from a link generated from php script. Let me analyze this: I have two linux servers with apache (php,mysql etc) that are running the same project. There is a part in this project that

Re: [PHP] The Data Literacy Test

2008-09-24 Thread tedd
At 12:25 PM +0100 9/24/08, Ashley Sheridan wrote: On Wed, 2008-09-24 at 09:20 +0800, Shelley wrote: The Data Literacy Test: http://www.phparch.cn/index.php/php/34-php-basics/202-the-data-literacy-test What the smeg i

Re: [PHP] Using Static Class Variables to Access Globally

2008-09-24 Thread Eric Butera
On Tue, Sep 23, 2008 at 9:03 PM, Ryan Panning <[EMAIL PROTECTED]> wrote: > The typical way to access a variable or instance from inside a > function/method is to either declare it a global variable or pass it as a > argument. Is there any reason why someone shouldn't use static class > variables to

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 14:59 +0300, Thodoris wrote: > > > On Wed, 2008-09-24 at 14:28 +0300, Thodoris wrote: > > > > > Hi guys. I am having a problem with opening xls files from a link > > > generated from php script. Let me analyze this: > > > > > > I have two linux servers with apache (php,m

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Thodoris
On Wed, 2008-09-24 at 14:59 +0300, Thodoris wrote: On Wed, 2008-09-24 at 14:28 +0300, Thodoris wrote: Hi guys. I am having a problem with opening xls files from a link generated from php script. Let me analyze this: I have two linux servers with apache (php,mysql etc) that are

Re: [PHP] Re: Using Static Class Variables to Access Globally

2008-09-24 Thread Richard Heyes
> /me prefers singleton with __get and __set but each to their own :) Do you mean registry? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] The Data Literacy Test

2008-09-24 Thread Maciek Sokolewicz
tedd wrote: At 12:25 PM +0100 9/24/08, Ashley Sheridan wrote: On Wed, 2008-09-24 at 09:20 +0800, Shelley wrote: The Data Literacy Test: http://www.phparch.cn/index.php/php/34-php-basics/202-the-data-literacy-test

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Jochem Maas
Thodoris schreef: On Wed, 2008-09-24 at 14:59 +0300, Thodoris wrote: On Wed, 2008-09-24 at 14:28 +0300, Thodoris wrote: Hi guys. I am having a problem with opening xls files from a link generated from php script. Let me analyze this: I have two linux servers with apache (php,mysq

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Thodoris
Thodoris schreef: On Wed, 2008-09-24 at 14:59 +0300, Thodoris wrote: On Wed, 2008-09-24 at 14:28 +0300, Thodoris wrote: Hi guys. I am having a problem with opening xls files from a link generated from php script. Let me analyze this: I have two linux servers with apache (php,mys

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 15:43 +0300, Thodoris wrote: > > Thodoris schreef: > >> > >> > >>> On Wed, 2008-09-24 at 14:59 +0300, Thodoris wrote: > >>> > > On Wed, 2008-09-24 at 14:28 +0300, Thodoris wrote: > > > >> Hi guys. I am having a problem with opening xls files from a link >

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Thodoris
If you are trying to open a file that has a URL instead of a local path, then it will always be opened as read-only, and there is no way to change this. If you are opening it using a local path (samba, nfs, fish, etc) then I would check to see the file permissions. As the file is being written b

RE: [PHP] Re: class const versus define

2008-09-24 Thread Richard Lynch
> Richard Lynch schrieb: > > Is there any reason why the logic behind define() couldn't be pushed > down to class const? > > > > Code like this is kinda fugly: > > > > //It's okay here, but not in a class? > > define('CACHE_DIR_LONG', CONFIG_ROOT_PATH . '/cache/'); > > class Cache { > > const CA

RE: [PHP] Re: Browser could not get mp3 files from http site

2008-09-24 Thread Richard Lynch
> On Wed, Sep 24, 2008 at 9:56 AM, Richard Lynch <[EMAIL PROTECTED]> > wrote: > > As a general rule, check what happens when you do wget -S on the URL > and see what the browser sees. > > Thanks Richard and all responses. That was the best PHP and HTML debug > I've learned so far. I always find it

RE: [PHP] How to detect the host (window or Linux)?

2008-09-24 Thread Richard Lynch
> Thanks Thodoris and Anderson. Sorry for not clear about the question. > I mean to detect the OS in Host system where the browser is located, > not the SERVER OS. It's really none of your business what OS I'm running :-v You may be able to make an educated guess from the HTTP headers in $_SERVER

RE: [PHP] spreadsheets are opened read only

2008-09-24 Thread Richard Lynch
> Hi guys. I am having a problem with opening xls files from a link > generated from php script. Let me analyze this: > > I have two linux servers with apache (php,mysql etc) that are running > the same project. There is a part in this project that reads all the > files from a directory and generat

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Jim Lucas
Thodoris wrote: > > Hi guys. I am having a problem with opening xls files from a link > generated from php script. Let me analyze this: > > I have two linux servers with apache (php,mysql etc) that are running > the same project. There is a part in this project that reads all the > files from a d

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread Thodoris
O/H Jim Lucas έγραψε: Thodoris wrote: Hi guys. I am having a problem with opening xls files from a link generated from php script. Let me analyze this: I have two linux servers with apache (php,mysql etc) that are running the same project. There is a part in this project that reads all the f

Re: [PHP] Re: Using Static Class Variables to Access Globally

2008-09-24 Thread Nathan Nobbe
On Wed, Sep 24, 2008 at 6:28 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: > > /me prefers singleton with __get and __set but each to their own :) > > Do you mean registry? could be, but it doesnt have to. when i think of a registry, i think of something that stores a single instance of several

Re: [PHP] Re: class const versus define

2008-09-24 Thread Nathan Nobbe
On Wed, Sep 24, 2008 at 7:35 AM, Richard Lynch <[EMAIL PROTECTED]> wrote: > I need the PATH to differ in development, staging, and production due to > mixed environments. factory *cough* > Unfortunately, I CANNOT construct a class const "on the fly" from global > define'd constants and constan

[PHP] Re: was [PHP] Re: render html

2008-09-24 Thread Michelle Konzack
Am 2008-09-21 14:27:11, schrieb Ashley Sheridan: > You will only get the errors you describe if you've messed up the > document type declaration. I always use this one for my sites: > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> > > and it never gives shorttag warnings or errors

RE: [PHP] Re: class const versus define

2008-09-24 Thread Richard Lynch
I’m kind of stuck with a pre-existing code-base that cannot be substantially changed at this time... I guess I can just make it a class variable, even if it never “varies” in the script, which to me screams “const” [shrug] From: Nathan Nobbe [mailto:[EMAIL PROTECTED] Sent: Wednesday, September

[PHP] calling functions from one or multiple files

2008-09-24 Thread Lamp Lists
Hi, Right now I use one file, usually called functions.php, with all functions I'm going to use most likely on every page. Then, I create each function I'm going to use once in a while as separate file. Pro: I would include a function when I'm going to use. Con: I have to write extra include line

Re: [PHP] Re: class const versus define

2008-09-24 Thread Jochem Maas
Richard Lynch schreef: Richard Lynch schrieb: Is there any reason why the logic behind define() couldn't be pushed down to class const? Code like this is kinda fugly: //It's okay here, but not in a class? define('CACHE_DIR_LONG', CONFIG_ROOT_PATH . '/cache/'); class Cache { const CACHE_DIR

Re: [PHP] Re: Using Static Class Variables to Access Globally

2008-09-24 Thread Nathan Rixham
Nathan Nobbe wrote: On Wed, Sep 24, 2008 at 6:28 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: /me prefers singleton with __get and __set but each to their own :) Do you mean registry? could be, but it doesnt have to. when i think of a registry, i think of something that stores a single ins

Re: [PHP] calling functions from one or multiple files

2008-09-24 Thread b
Lamp Lists wrote: Hi, Right now I use one file, usually called functions.php, with all functions I'm going to use most likely on every page. Then, I create each function I'm going to use once in a while as separate file. Pro: I would include a function when I'm going to use. Con: I have to write

Re: [PHP] calling functions from one or multiple files

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 12:37 -0400, b wrote: > Lamp Lists wrote: > > Hi, > > Right now I use one file, usually called functions.php, with all functions > > I'm going to use most likely on every page. > > Then, I create each function I'm going to use once in a while as separate > > file. > > Pro: I

Re: [PHP] calling functions from one or multiple files

2008-09-24 Thread b
Ashley Sheridan wrote: On Wed, 2008-09-24 at 12:37 -0400, b wrote: Lamp Lists wrote: Hi, Right now I use one file, usually called functions.php, with all functions I'm going to use most likely on every page. Then, I create each function I'm going to use once in a while as separate file. Pro: I

Re: [PHP] calling functions from one or multiple files

2008-09-24 Thread Eric Butera
On Wed, Sep 24, 2008 at 12:28 PM, Lamp Lists <[EMAIL PROTECTED]> wrote: > Hi, > Right now I use one file, usually called functions.php, with all functions > I'm going to use most likely on every page. > Then, I create each function I'm going to use once in a while as separate > file. > Pro: I wou

Re: [PHP] calling functions from one or multiple files

2008-09-24 Thread Thodoris
On Wed, 2008-09-24 at 12:37 -0400, b wrote: Lamp Lists wrote: Hi, Right now I use one file, usually called functions.php, with all functions I'm going to use most likely on every page. Then, I create each function I'm going to use once in a while as separate file. Pro: I would include

Re: [PHP] spreadsheets are opened read only

2008-09-24 Thread James
On Wed, September 24, 2008 7:28 am, Thodoris wrote: > > Hi guys. I am having a problem with opening xls files from a link > generated from php script. Let me analyze this: > > I have two linux servers with apache (php,mysql etc) that are running > the same project. There is a part in this project

Re: [PHP] calling functions from one or multiple files

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 20:32 +0300, Thodoris wrote: > > > On Wed, 2008-09-24 at 12:37 -0400, b wrote: > > > > > Lamp Lists wrote: > > > > > > > Hi, > > > > Right now I use one file, usually called functions.php, with all > > > > functions I'm going to use most likely on every page. > > > >

[PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread It flance
Hi, I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I know it is a multidimensional associative array but the # i don't what this means. Thank you -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Thiago H. Pojda
Hello, On Wed, Sep 24, 2008 at 2:51 PM, It flance <[EMAIL PROTECTED]> wrote: > Hi, > > I am working on the code of a former employee and I don't understand what > this $arr['N']['#'] refers to. > I'm not sure you can do that (can't test atm), but looks like a valid position as it's in ' '. I wo

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 10:51 -0700, It flance wrote: > Hi, > > I am working on the code of a former employee and I don't understand what > this $arr['N']['#'] refers to. > > I know it is a multidimensional associative array but the # i don't what this > means. > > Thank you > > > > >

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Jochem Maas
It flance schreef: Hi, I am working on the code of a former employee and I don't understand what this $arr['N']['#'] refers to. I know it is a multidimensional associative array but the # i don't what this means. it's a string ... used as the (associative) key to an array. the item you me

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Richard Heyes
> I am working on the code of a former employee and I don't understand what > this $arr['N']['#'] refers to. They're just obscure array index names. > I know it is a multidimensional associative array but the # i don't what this > means. Nothing special. -- Richard Heyes HTML5 Graphing for

[PHP] How to show ppt file on webpage/flash

2008-09-24 Thread Tiji varghese
Hi all, I want to show '.ppt' (Power Point) files on my web page either as a flash or embedded into web page or by doing some processing at the server side. The actual scenario being that a user would just upload their 'ppt' files online and on the next page I will be showing them the contents of

RE: [PHP] calling functions from one or multiple files

2008-09-24 Thread Richard Lynch
> -Original Message- > Right now I use one file, usually called functions.php, with all > functions I'm going to use most likely on every page. > Then, I create each function I'm going to use once in a while as > separate file. > Pro: I would include a function when I'm going to use. > Con:

RE: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Richard Lynch
> -Original Message- > I am working on the code of a former employee and I don't understand > what this $arr['N']['#'] refers to. > > I know it is a multidimensional associative array but the # i don't > what this means. '#' is just a string value. It has no special meaning whatsoever.

[PHP] Re: Just testing IGNORE!!!

2008-09-24 Thread Shawn McKenzie
uaca man wrote: Did IGNORE!!! pass or fail the testing? -Shawn -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread Nathan Nobbe
On Wed, Sep 24, 2008 at 1:00 PM, Richard Lynch <[EMAIL PROTECTED]> wrote: > > -Original Message- > > I am working on the code of a former employee and I don't understand > > what this $arr['N']['#'] refers to. > > > > I know it is a multidimensional associative array but the # i don't > >

RE: [PHP] calling functions from one or multiple files

2008-09-24 Thread Robert Cummings
On Wed, 2008-09-24 at 13:58 -0500, Richard Lynch wrote: > > -Original Message- > > Right now I use one file, usually called functions.php, with all > > functions I'm going to use most likely on every page. > > Then, I create each function I'm going to use once in a while as > > separate fil

Re: [PHP] Don't understand what is this $arr['N']['#']

2008-09-24 Thread It flance
hi, You're right. Because associative arrays are meant to make code easier to understand by using meaningful indexes. Thank you guys --- On Wed, 9/24/08, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > From: Nathan Nobbe <[EMAIL PROTECTED]> > Subject: Re: [PHP] Don't understand what is this $arr['

[PHP] Problem with install lybrary GD

2008-09-24 Thread opc
Hi forum I try install library GD on Centos 5 I download the gd-2.0.35.tar with the next sentece ./configure --prefix=/usr/local --with=/usr/local --with-jpeg=/usr/local make make install Here all ok. And next install the php-5.2.6 ./configure (... n parameter...) --with-gd=/usr/local/lib --w

[PHP] Eclipse - PDT, prevent validation on some files

2008-09-24 Thread Sancar Saran
Hello there, sorry to bugging the list and I hope finding the answer quickly. Today I watch a youtube video which showing eclipse pdt and I want to try. It was amazing, it was so advanced after kate and if I handle one thing, I would be very happy. This thing checks every file in the project

Re: [PHP] Eclipse - PDT, prevent validation on some files

2008-09-24 Thread Jochem Maas
Sancar Saran schreef: Hello there, sorry to bugging the list and I hope finding the answer quickly. then STFW, or something? Today I watch a youtube video which showing eclipse pdt and I want to try. It was amazing, it was so advanced after kate and if I handle one thing, I would be very

Re: [PHP] Search functionality

2008-09-24 Thread Dan Shirah
> > Its pretty straight forward, you create a query that extracts the name >> and id of the records with a relevant where clause created on the fly. When >> outputing the data, each record gets created as a link that then loads >> another page/div with the total dataset for that record. The quest

Re: [PHP] Eclipse - PDT, prevent validation on some files

2008-09-24 Thread Nathan Rixham
Jochem Maas wrote: Sancar Saran schreef: Hello there, sorry to bugging the list and I hope finding the answer quickly. then STFW, or something? Today I watch a youtube video which showing eclipse pdt and I want to try. It was amazing, it was so advanced after kate and if I handle one thing,

Re: [PHP] How to show ppt file on webpage/flash

2008-09-24 Thread James
On Wed, September 24, 2008 2:53 pm, Tiji varghese wrote: > Hi all, > I want to show '.ppt' (Power Point) files on my web page either as a flash > or embedded into web page or by doing some processing at the server side. > The actual scenario being that a user would just upload their 'ppt' > file

RE: [PHP] Problem with install lybrary GD

2008-09-24 Thread Richard Lynch
Did you change php.ini to load in the php_gd.so file? Is this in Apache, and did you restart apache, which only reads php.ini on startup? > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 24, 2008 3:35 PM > To: php-general@lists.php.net

Re: [PHP] Eclipse - PDT, prevent validation on some files

2008-09-24 Thread Jochem Maas
Nathan Rixham schreef: Jochem Maas wrote: ... tough day master maas? like chewing on wasps :-/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Eclipse - PDT, prevent validation on some files

2008-09-24 Thread Eric Butera
On Wed, Sep 24, 2008 at 4:36 PM, Sancar Saran <[EMAIL PROTECTED]> wrote: > Hello there, > > sorry to bugging the list and I hope finding the answer quickly. > > Today I watch a youtube video which showing eclipse pdt and I want to try. > > It was amazing, it was so advanced after kate and if I hand

Re: [PHP] Google Checkout

2008-09-24 Thread Nathan Rixham
[snip] switched from Paypal to Google Checkout. [/snip] http://www.e-junkie.com/ does both.. google checkout + paypal -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] abmeldung

2008-09-24 Thread Sascha Braun ! CEO @ BRAUN Networks
unsubscribe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] abmeldung

2008-09-24 Thread Stut
Look at the bottom of this email... On 24 Sep 2008, at 16:10, Sascha Braun ! CEO @ BRAUN Networks wrote: unsubscribe No, lower... -- PHP General Mailing List (http://www.php.net/) Bit further... To unsubscribe, visit: http://www.php.net/unsub.php There it is!! For a CEO you're not so

Re: [PHP] abmeldung

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 23:13 +0100, Stut wrote: > Look at the bottom of this email... > > On 24 Sep 2008, at 16:10, Sascha Braun ! CEO @ BRAUN Networks wrote: > > > unsubscribe > > No, lower... > > > -- > > PHP General Mailing List (http://www.php.net/) > > Bit further... > > > To unsubscribe

Re: [PHP] How to show ppt file on webpage/flash

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 16:59 -0400, James wrote: > On Wed, September 24, 2008 2:53 pm, Tiji varghese wrote: > > Hi all, > > I want to show '.ppt' (Power Point) files on my web page either as a flash > > or embedded into web page or by doing some processing at the server side. > > The actual scenar

Re: [PHP] abmeldung

2008-09-24 Thread Stut
On 24 Sep 2008, at 23:18, Ashley Sheridan wrote: On Wed, 2008-09-24 at 23:13 +0100, Stut wrote: Look at the bottom of this email... On 24 Sep 2008, at 16:10, Sascha Braun ! CEO @ BRAUN Networks wrote: unsubscribe No, lower... -- PHP General Mailing List (http://www.php.net/) Bit furthe

Re: [PHP] abmeldung

2008-09-24 Thread Nathan Rixham
Stut wrote: On 24 Sep 2008, at 23:18, Ashley Sheridan wrote: On Wed, 2008-09-24 at 23:13 +0100, Stut wrote: Look at the bottom of this email... On 24 Sep 2008, at 16:10, Sascha Braun ! CEO @ BRAUN Networks wrote: unsubscribe No, lower... -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] abmeldung

2008-09-24 Thread Stut
On 25 Sep 2008, at 00:26, Nathan Rixham wrote: Stut wrote: On 24 Sep 2008, at 23:18, Ashley Sheridan wrote: On Wed, 2008-09-24 at 23:13 +0100, Stut wrote: Look at the bottom of this email... On 24 Sep 2008, at 16:10, Sascha Braun ! CEO @ BRAUN Networks wrote: unsubscribe No, lower...

Re: [PHP] The Data Literacy Test

2008-09-24 Thread Philip Thompson
On Sep 24, 2008, at 7:29 AM, Maciek Sokolewicz wrote: tedd wrote: At 12:25 PM +0100 9/24/08, Ashley Sheridan wrote: On Wed, 2008-09-24 at 09:20 +0800, Shelley wrote: The Data Literacy Test: http://www.phparch.cn/in

Re: [PHP] The Data Literacy Test

2008-09-24 Thread Shelley
2008/9/25 Philip Thompson <[EMAIL PROTECTED]> > On Sep 24, 2008, at 7:29 AM, Maciek Sokolewicz wrote: > > tedd wrote: >> >>> At 12:25 PM +0100 9/24/08, Ashley Sheridan wrote: >>> On Wed, 2008-09-24 at 09:20 +0800, Shelley wrote: > > < > http://phparch.cn/index.php/php/34-php

Re: [PHP] How to show ppt file on webpage/flash

2008-09-24 Thread Bastien Koert
On Wed, Sep 24, 2008 at 6:20 PM, Ashley Sheridan <[EMAIL PROTECTED]>wrote: > On Wed, 2008-09-24 at 16:59 -0400, James wrote: > > On Wed, September 24, 2008 2:53 pm, Tiji varghese wrote: > > > Hi all, > > > I want to show '.ppt' (Power Point) files on my web page either as a > flash > > > or embedd

Re: [PHP] Search functionality

2008-09-24 Thread Bastien Koert
On Wed, Sep 24, 2008 at 4:47 PM, Dan Shirah <[EMAIL PROTECTED]> wrote: > Its pretty straight forward, you create a query that extracts the name >>> and id of the records with a relevant where clause created on the fly. When >>> outputing the data, each record gets created as a link that then loa

Re: [PHP] The Data Literacy Test

2008-09-24 Thread Eric Butera
On Wed, Sep 24, 2008 at 9:22 PM, Shelley <[EMAIL PROTECTED]> wrote: > 2008/9/25 Philip Thompson <[EMAIL PROTECTED]> > >> On Sep 24, 2008, at 7:29 AM, Maciek Sokolewicz wrote: >> >> tedd wrote: >>> At 12:25 PM +0100 9/24/08, Ashley Sheridan wrote: > On Wed, 2008-09-24 at 09:20 +0800,

[PHP] Wierd Variable Initialization

2008-09-24 Thread VamVan
So guys, I found some thing strange that happened to me yesterday. Its small but kinda freaked me out. So I have a tokenmap.php that I include include in different configuration files. Some are classes and some are simple php files. So in my tokenmap.php I have declared an array as global. SO $

Re: [PHP] Wierd Variable Initialization

2008-09-24 Thread 惠新宸
Title: Laruence's Signature register_global = on ? VamVan wrote: So guys, I found some thing strange that happened to me yesterday. Its small but kinda freaked me out. So I have a tokenmap.php that I include include in different configuration files. Some are classes and some are simple ph

Re: [PHP] Wierd Variable Initialization

2008-09-24 Thread 惠新宸
Title: Laruence's Signature register_global = on ? VamVan wrote: So guys, I found some thing strange that happened to me yesterday. Its small but kinda freaked me out. So I have a tokenmap.php that I include include in different configuration files. Some are classes and some are simple ph

Re: [PHP] Wierd Variable Initialization

2008-09-24 Thread Chris
VamVan wrote: So guys, I found some thing strange that happened to me yesterday. Its small but kinda freaked me out. So I have a tokenmap.php that I include include in different configuration files. Some are classes and some are simple php files. So in my tokenmap.php I have declared an array

Re: [PHP] Wierd Variable Initialization

2008-09-24 Thread Shelley
Yeah, use $GLOBALS[''], or global $tokenmap; 2008/9/25 Chris <[EMAIL PROTECTED]> > VamVan wrote: > >> So guys, >> >> I found some thing strange that happened to me yesterday. Its small but >> kinda freaked me out. >> >> So I have a tokenmap.php that I include include in different configurati

Re: [PHP] The Data Literacy Test

2008-09-24 Thread Ashley Sheridan
On Wed, 2008-09-24 at 21:45 -0400, Eric Butera wrote: > On Wed, Sep 24, 2008 at 9:22 PM, Shelley <[EMAIL PROTECTED]> wrote: > > 2008/9/25 Philip Thompson <[EMAIL PROTECTED]> > > > >> On Sep 24, 2008, at 7:29 AM, Maciek Sokolewicz wrote: > >> > >> tedd wrote: > >>> > At 12:25 PM +0100 9/24/08,