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