Re: [PHP-DEV] PHP auto global variables inside C extension

2005-03-22 Thread Zeev Suraski
At 09:02 22/03/2005, Arjun Jain wrote: Hi everyone, I was wondering if there was any way in which the PHP auto global variables could be used inside the C extension code? Where does php store all the global variables? It stores them in the globals hash table. Take a look at php_session_start()

[PHP-DEV] PHP auto global variables inside C extension

2005-03-21 Thread Arjun Jain
Hi everyone, I was wondering if there was any way in which the PHP auto global variables could be used inside the C extension code? Where does php store all the global variables? Well what I am trying to do is put the uploaded file in a custom database. But for that I require all the four

Re: [PHP-DEV] PHP auto global variables inside C extension

2005-03-21 Thread Kamesh Jayachandran
SG(rfc1867_uploaded_files) will have a list of filenames uploaded. With regards Kamesh Jayachandran On Tue, 22 Mar 2005 12:32:44 +0530, Arjun Jain [EMAIL PROTECTED] said: Hi everyone, I was wondering if there was any way in which the PHP auto global variables could be used inside the C