[PHP] AMF PHP

2005-12-12 Thread Yaswanth Narvaneni
Hi! Did any of you guys work with AMF PHP? I have been using AMF PHP for flash remoting and I am unable to propagate cookieless sessions from my web application to flash. Any suggestions? I am using Tufat.com's AMF Flash Chat as the flash app. Regards, Yaswanth -- "In theory there is no differenc

Re: [PHP] need for $_POST[''] changed after server upgrade

2005-12-12 Thread Robert Cummings
On Tue, 2005-12-13 at 00:31, Michael Hulse wrote: > On Dec 12, 2005, at 9:26 PM, [EMAIL PROTECTED] wrote: > > The only problem I see with this is now you are asking php to issue a > > count on the $_REQUEST array, this could take some time depending on > > your > > form size. > > Ah, very good po

Re: [PHP] need for $_POST[''] changed after server upgrade

2005-12-12 Thread Michael Hulse
On Dec 12, 2005, at 9:26 PM, [EMAIL PROTECTED] wrote: The only problem I see with this is now you are asking php to issue a count on the $_REQUEST array, this could take some time depending on your form size. Ah, very good point... did not think of that. :) -- PHP General Mailing List (http

Re: [PHP] need for $_POST[''] changed after server upgrade

2005-12-12 Thread matt
> On Dec 12, 2005, at 8:21 PM, Ray wrote: >> Hello, >> Thanks Matt, I appreciate your help. your solution is a lot easier >> than mine. >> It's also nice to understand what was happening. I was introduced to >> PHP >> after that type of globals were considered 'evil' so I hadn't seen code >> writte

Re: [PHP] need for $_POST[''] changed after server upgrade

2005-12-12 Thread Michael Hulse
On Dec 12, 2005, at 8:21 PM, Ray wrote: Hello, Thanks Matt, I appreciate your help. your solution is a lot easier than mine. It's also nice to understand what was happening. I was introduced to PHP after that type of globals were considered 'evil' so I hadn't seen code written that way. Ray --

[PHP] Container Loading Script

2005-12-12 Thread Leonard Burton
HI all, I am working on a project where it would be nice to be able to create a load plan for a semi trailer or ocean container. There are some commercially available programs to do this in windows but nothing in PHP. Does anyone know of a PHP script that will do this? Basically it needs to kno

Re: [PHP] detecting file size

2005-12-12 Thread Jeffrey Sambells
The php script starts to execute AFTER the file has already been uploaded so the quick answer is no you can't get the file size prior to the upload finishing (in PHP). I fought with a similar problem and ended up implementing the uploading portion of a script using perl which has access to the

RE: [PHP] need for $_POST[''] changed after server upgrade

2005-12-12 Thread Ray
Hello, Thanks Matt, I appreciate your help. your solution is a lot easier than mine. It's also nice to understand what was happening. I was introduced to PHP after that type of globals were considered 'evil' so I hadn't seen code written that way. Ray -Original Message- From: "Matt Babine

Re: [PHP] Re: IE6 not returning POST data from a textarea

2005-12-12 Thread Michael Hulse
For those interested, here is the answer... Text pasted into a textarea [e.g., from Word] can have characters not defined in IE's textarea ISO-8859-1 charset. Appearently, IE6 has a bug such that it does not send the POST value for the textarea name when some of these are present. [e.g., "…"

[PHP] Re: IE6 not returning POST data from a textarea

2005-12-12 Thread Al
Al wrote: Anyone know to get IE6 to return POST data from a textarea when the text is pasted in? Works fine for Mozilla, etc. print_r($_POST) shows several and values just fine. Thanks For those interested, here is the answer... Text pasted into a textarea [e.g., from Word] can have

Re: [PHP] Help with preg_match and windows domain logins...

2005-12-12 Thread Robin Vickery
On 12/13/05, Daevid Vincent <[EMAIL PROTECTED]> wrote: > I'm trying to do what should be a very simple regex, but can't seem to get > PHP to work, yet regex-coach and even an XML .XSD work fine: > > Valid forms of a windows logon are: > "foo\bar" > "\\foo\bar" > [...] > //preg_match('/(

[PHP] Help with preg_match and windows domain logins...

2005-12-12 Thread Daevid Vincent
I'm trying to do what should be a very simple regex, but can't seem to get PHP to work, yet regex-coach and even an XML .XSD work fine: Valid forms of a windows logon are: "foo\bar" "\\foo\bar" function isValidWinLogon($logon) { //$logon = 'foo\\bar'; $logon = '\\foo\bar'; print "logon = '$

RE: FW: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread Jay Blanchard
[snip] Jay Blanchard wrote: > [snip] > Everyone keeps asking it. Of course it's named or Mozzilla wouldn't work. > [/snip] > > > You can insert a textarea into a page without a name and mozilla will work. Are you sure? I just tried it using FF and textarea is not posted. Even if I set id attri

Re: FW: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread M
Jay Blanchard wrote: [snip] Everyone keeps asking it. Of course it's named or Mozzilla wouldn't work. [/snip] You can insert a textarea into a page without a name and mozilla will work. Are you sure? I just tried it using FF and textarea is not posted. Even if I set id attribute. -- PHP G

RE: [PHP] detecting file size

2005-12-12 Thread Jay Blanchard
[snip] i am making a form to upload files to server i know i can detect the file size after being uploaded, but i do want to detect the file after it is being uploaded to the server. is there anyway i can do this ? [/snip] You can detect file size on the client side with JavaScript, this may help;

[PHP] detecting file size

2005-12-12 Thread Ahmed Abdel-Aliem
hi i am making a form to upload files to server i know i can detect the file size after being uploaded, but i do want to detect the file after it is being uploaded to the server. is there anyway i can do this ? any help would be appreciated, thanks in advance. -- Ahmed Abdel-Aliem Web Developer w

Re: [PHP] OO XML Parser

2005-12-12 Thread Robert Cummings
On Mon, 2005-12-12 at 05:40, Jochem Maas wrote: > in this case there is an alterntive: > > http://php.net/manual/en/function.xml-set-object.php > > Norbert Wenzel wrote: > > Robert Cummings wrote: > > > >> On Sat, 2005-12-10 at 11:25, mail wrote: > >> > >>> xml_set_element_handler($parser, "xml_

FW: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread Jay Blanchard
[snip] Everyone keeps asking it. Of course it's named or Mozzilla wouldn't work. [/snip] You can insert a textarea into a page without a name and mozilla will work. If the textarea is named have you tried this echo $_POST['textareaName']; -- PHP General Mailing List (http://www.php.net/)

RE: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread Jay Blanchard
[snip] I'm onto the bug. If the text contains "…" char [hex 85]; IE6 doesn't send the POST data. There may be other bad characters; i haven't tested yet. [/snip] Is the text area named? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread Al
tomasz abramowicz wrote: Al wrote: Anyone know to get IE6 to return POST data from a textarea when the text is pasted in? Works fine for Mozilla, etc. print_r($_POST) shows several and values just fine. Thanks post your code. ie6 not returning post values from textarea fields work

Re: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread Zareef Ahmed
- Original Message - From: "Al" <[EMAIL PROTECTED]> To: Sent: Monday, December 12, 2005 12:16 PM Subject: [PHP] IE6 not returning POST data from a textarea > Anyone know to get IE6 to return POST data from a textarea when the text is pasted in? > Can you explain what exactly you are do

RE: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread Jared Williams
> Anyone know to get IE6 to return POST data from a textarea > when the text is pasted in? > > Works fine for Mozilla, etc. > > print_r($_POST) shows several and > values just fine. > If it doesn't have a name attribute, or is disabled IE won't include it in the post. Jared -- PHP Gene

Re: [PHP] Re: href links not working in XP

2005-12-12 Thread Marlin Unruh
Dan Baker wrote: "Marlin Unruh" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I apologize because I posted this question earlier under Re: [PHP] href difference between OS's, and am still struggling with the problem. I think I have fished all the way around the lake, with no re

Re: [PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread tomasz abramowicz
Al wrote: Anyone know to get IE6 to return POST data from a textarea when the text is pasted in? Works fine for Mozilla, etc. print_r($_POST) shows several and values just fine. Thanks post your code. ie6 not returning post values from textarea fields works fine for me. ie6 not return

[PHP] Re: href difference between OS's.

2005-12-12 Thread Dan Baker
"Marco Kaiser" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] just link directly to the specific file like Link Local NOTE: XP SP2 will *not* open this file. The new security will not open files on local drives. You will need to map a network drive to a folder on your local drive:

[PHP] IE6 not returning POST data from a textarea

2005-12-12 Thread Al
Anyone know to get IE6 to return POST data from a textarea when the text is pasted in? Works fine for Mozilla, etc. print_r($_POST) shows several and values just fine. Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Questions from a ColdFusion Developer

2005-12-12 Thread Eric Butera
On 12/11/05, Christopher Jordan <[EMAIL PROTECTED]> wrote: > > Hi folks, > > I'm a ColdFusion developer, but I'm branching out into PHP because alot > of my smaller clients don't want to pay for CF. > > Anyway, a bit of background: > > I've got a page that does a search on one of my tables.

[PHP] Re: href links not working in XP

2005-12-12 Thread Dan Baker
"Marlin Unruh" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I apologize because I posted this question earlier under Re: [PHP] href >difference between OS's, and am still struggling with the problem. I think >I have fished all the way around the lake, with no results. > > I canno

Re: [PHP] unset and sessions

2005-12-12 Thread sunaram patir
http://in.php.net/unset On 12/12/05, Eternity Records Webmaster <[EMAIL PROTECTED]> wrote: > I use php 5.0.5 and was wondering when I use $_SESSION would unset() work > the best for getting rid of the values in that array?? > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, v

Re: [PHP] Class Constant PHP 5

2005-12-12 Thread Jochem Maas
Jay Blanchard wrote: [snip] it doesn't fail and is not imho foolish by definition ... the value of the constant, although changing stays the same for the duration of the request, IIRC Rasmus himself once mentioned that it can be useful to be able to set a constant to a 'dynamic' value like this

Re: [PHP] ■PCソフト安値販 売■業界初システム

2005-12-12 Thread Richard Davey
On 12 Dec 2005, at 13:27, Paul wrote: ? On 12/12/05, dmzkaqmzdp5 <[EMAIL PROTECTED]> wrote: PCユーザーにお得な情報を一方的に配信させて いただきましたことお詫びいたします The phrase 'Japanese spam email advertising a site selling pirated software' springs to mind. Cheers, Rich -- http://www.corephp.co.uk PHP Development S

Re: [PHP] ■PCソフト安値販売■業界初システム

2005-12-12 Thread Paul
? On 12/12/05, dmzkaqmzdp5 <[EMAIL PROTECTED]> wrote: > > PCユーザーにお得な情報を一方的に配信させていただきましたことお詫びいたします > > このメールは送信専用メールアドレスから配信されています。ご返信いただいてもお答えできませんのでご了承ください。 > ご質問等のある方はhttp://www.11279.com/のお問い合わせからご連絡ください。 > 配信停止希望の方は下記 配信停止よりお願いします。 > > 〜〜〜配信停止〜〜〜 > samurai_madoguti_samurai○

Re: [PHP] quickly discovered why refresh isn't nice

2005-12-12 Thread Chris Boget
hello, I just found out why one reason for a meta refresh is a bad idea, it does exactly that, it refreshes the page every 3 or 2 or 0 seconds which basically is constant..so maybe the header idea is better in this case. While this is very true, what is typically the case when you use meta re

[PHP] unset and sessions

2005-12-12 Thread Eternity Records Webmaster
I use php 5.0.5 and was wondering when I use $_SESSION would unset() work the best for getting rid of the values in that array?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] OO XML Parser

2005-12-12 Thread Jochem Maas
in this case there is an alterntive: http://php.net/manual/en/function.xml-set-object.php Norbert Wenzel wrote: Robert Cummings wrote: On Sat, 2005-12-10 at 11:25, mail wrote: xml_set_element_handler($parser, "xml_start_element", "xml_stop_element"); //can't find function use array nota

Re: [PHP] Date Function Questions

2005-12-12 Thread Jesús Fernández
the date taken is the same as the local time of the webserver. So if it changes that maybe the server admin's are changing it? -- http://esu.proyectoanonimo.com http://www.proyectoanonimo.com