Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.php > #14585 > unrolled thread

Passing a value from xml to php

Started byrichard <noreply@example.com>
First post2014-11-16 13:56 -0500
Last post2015-02-02 06:31 -0800
Articles 20 on this page of 25 — 13 participants

Back to article view | Back to comp.lang.php


Contents

  Passing a value from xml to php richard <noreply@example.com> - 2014-11-16 13:56 -0500
    Re: Passing a value from xml to php Denis McMahon <denismfmcmahon@gmail.com> - 2014-11-16 23:35 +0000
      Re: Passing a value from xml to php richard <noreply@example.com> - 2014-11-16 19:00 -0500
        Re: Passing a value from xml to php Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2014-11-17 01:53 +0100
          Re: Passing a value from xml to php richard <noreply@example.com> - 2014-11-16 20:08 -0500
            Re: Passing a value from xml to php Doug Miller <doug_at_milmac_dot_com@example.com> - 2014-11-17 01:17 +0000
              Re: Passing a value from xml to php Jerry Stuckle <jstucklex@attglobal.net> - 2014-11-16 22:08 -0500
                Re: Passing a value from xml to php Denis McMahon <denismfmcmahon@gmail.com> - 2014-11-17 16:02 +0000
                  Re: Passing a value from xml to php Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2014-11-17 22:38 +0100
                  Re: Passing a value from xml to php Evan Platt <evan@theobvious.espphotography.com.invalid> - 2014-11-21 16:53 -0800
              Re: Passing a value from xml to php Arno Welzel <usenet@arnowelzel.de> - 2014-11-17 08:37 +0100
                Re: Passing a value from xml to php Doug Miller <doug_at_milmac_dot_com@example.com> - 2014-11-18 20:28 +0000
            Re: Passing a value from xml to php Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2014-11-17 08:08 +0100
              Re: Passing a value from xml to php Jim Higgins <ILikeMy@Privacy.invalid> - 2014-11-17 20:53 +0000
                Re: Passing a value from xml to php Matthew Carter <m@ahungry.com> - 2014-11-17 21:03 -0500
                  Re: Passing a value from xml to php Jim Higgins <ILikeMy@Privacy.invalid> - 2014-11-26 01:53 +0000
              Re: Passing a value from xml to php "M. Strobel" <strobel@example.com> - 2015-01-30 21:14 +0100
          Re: Passing a value from xml to php Jerry Stuckle <jstucklex@attglobal.net> - 2014-11-16 22:06 -0500
        Re: Passing a value from xml to php Tim Streater <timstreater@greenbee.net> - 2014-11-17 09:53 +0000
        Re: Passing a value from xml to php Denis McMahon <denismfmcmahon@gmail.com> - 2014-11-17 16:05 +0000
          Re: Passing a value from xml to php Denis McMahon <denismfmcmahon@gmail.com> - 2014-11-17 16:17 +0000
            Re: Passing a value from xml to php Denis McMahon <denismfmcmahon@gmail.com> - 2014-11-17 16:40 +0000
            Re: Passing a value from xml to php Luuk <luuk@invalid.lan> - 2014-11-26 10:28 +0100
              Re: Passing a value from xml to php Denis McMahon <denismfmcmahon@gmail.com> - 2014-11-26 15:54 +0000
    Re: Passing a value from xml to php maria.adroit7786@gmail.com - 2015-02-02 06:31 -0800

Page 1 of 2  [1] 2  Next page →


#14585 — Passing a value from xml to php

Fromrichard <noreply@example.com>
Date2014-11-16 13:56 -0500
SubjectPassing a value from xml to php
Message-ID<1y187jcwv84fd$.c5radb33rror$.dlg@40tude.net>
According to the documentation from wimpy player, you are supposed to be
able to send data from the player to an external page.
They do this using a <comment> tag.
Such as <comment>pagefile.php?data=value</comment>
Quote are not required here.

What's the proper way in getting the php file to store this information
until it is displayed?

I tried using $GET but that does not work.

[toc] | [next] | [standalone]


#14586

FromDenis McMahon <denismfmcmahon@gmail.com>
Date2014-11-16 23:35 +0000
Message-ID<m4bcc4$8i7$5@dont-email.me>
In reply to#14585
On Sun, 16 Nov 2014 13:56:12 -0500, richard wrote:

> According to the documentation from wimpy player, you are supposed to be
> able to send data from the player to an external page.
> They do this using a <comment> tag.
> Such as <comment>pagefile.php?data=value</comment>
> Quote are not required here.
> 
> What's the proper way in getting the php file to store this information
> until it is displayed?
> 
> I tried using $GET but that does not work.

That's because it's not $GET. Spell it right and it will work.

-- 
Denis McMahon, denismfmcmahon@gmail.com

[toc] | [prev] | [next] | [standalone]


#14587

Fromrichard <noreply@example.com>
Date2014-11-16 19:00 -0500
Message-ID<10u6qvgx195rr.71f84qenegsc$.dlg@40tude.net>
In reply to#14586
On Sun, 16 Nov 2014 23:35:32 +0000 (UTC), Denis McMahon wrote:

> On Sun, 16 Nov 2014 13:56:12 -0500, richard wrote:
> 
>> According to the documentation from wimpy player, you are supposed to be
>> able to send data from the player to an external page.
>> They do this using a <comment> tag.
>> Such as <comment>pagefile.php?data=value</comment>
>> Quote are not required here.
>> 
>> What's the proper way in getting the php file to store this information
>> until it is displayed?
>> 
>> I tried using $GET but that does not work.
> 
> That's because it's not $GET. Spell it right and it will work.

Still does not work.

[toc] | [prev] | [next] | [standalone]


#14588

FromThomas 'PointedEars' Lahn <PointedEars@web.de>
Date2014-11-17 01:53 +0100
Message-ID<2553818.G9HO7XPkZG@PointedEars.de>
In reply to#14587
richard wrote:

> On Sun, 16 Nov 2014 23:35:32 +0000 (UTC), Denis McMahon wrote:
>> On Sun, 16 Nov 2014 13:56:12 -0500, richard wrote:
>>> According to the documentation from wimpy player, you are supposed to be
>>> able to send data from the player to an external page.
>>> They do this using a <comment> tag.
>>> Such as <comment>pagefile.php?data=value</comment>
>>> Quote are not required here.
>>> 
>>> What's the proper way in getting the php file to store this information
>>> until it is displayed?
>>> 
>>> I tried using $GET but that does not work.
>> That's because it's not $GET. Spell it right and it will work.
> 
> Still does not work.

“Does not work” is not a problem *description*.  And what you have written 
so far is not close to something a third person would have a chance to 
understand, much less reproduce.  I would have referred you to “How To Ask 
Questions The Smart Way” now but you already know it and still ignore the 
good advice it gives.  You are also still abusing the example.com domain.  
Well, your choice.

-- 
PointedEars
Zend Certified PHP Engineer
Twitter: @PointedEars2
Please do not Cc: me. / Bitte keine Kopien per E-Mail.

[toc] | [prev] | [next] | [standalone]


#14589

Fromrichard <noreply@example.com>
Date2014-11-16 20:08 -0500
Message-ID<13rt8vtwcr8c1$.1laagc89p3o0k.dlg@40tude.net>
In reply to#14588
On Mon, 17 Nov 2014 01:53:17 +0100, Thomas 'PointedEars' Lahn wrote:

> richard wrote:
> 
>> On Sun, 16 Nov 2014 23:35:32 +0000 (UTC), Denis McMahon wrote:
>>> On Sun, 16 Nov 2014 13:56:12 -0500, richard wrote:
>>>> According to the documentation from wimpy player, you are supposed to be
>>>> able to send data from the player to an external page.
>>>> They do this using a <comment> tag.
>>>> Such as <comment>pagefile.php?data=value</comment>
>>>> Quote are not required here.
>>>> 
>>>> What's the proper way in getting the php file to store this information
>>>> until it is displayed?
>>>> 
>>>> I tried using $GET but that does not work.
>>> That's because it's not $GET. Spell it right and it will work.
>> 
>> Still does not work.
> 
> “Does not work” is not a problem *description*.  And what you have written 
> so far is not close to something a third person would have a chance to 
> understand, much less reproduce.  I would have referred you to “How To Ask 
> Questions The Smart Way” now but you already know it and still ignore the 
> good advice it gives.  You are also still abusing the example.com domain.  
> Well, your choice.

Example Domain

This domain is established to be used for illustrative examples in
documents. You may use this domain in examples without prior coordination
or asking for permission.

As described in RFC 2606 and RFC 6761, a number of domains such as
example.com and example.org for documentation purposes. These domains may
be used as illustrative examples in documents without prior coordination
with us. They are not available for registration or transfer.

It has been long accepted by most news providers and ISP's that usage of
this domain name for posting to usenet is not a violation of any kind.

But you are free to write to my news provider, newsguy.com and complain all
you want.

I got suspended for a day once because the domain I used suddenly got
registered by a certain person and he bitched about it.
"Yeah we know he's an idiot".
So I changed the addy and went back to posting.
I'd love to know what they answer you with.

[toc] | [prev] | [next] | [standalone]


#14590

FromDoug Miller <doug_at_milmac_dot_com@example.com>
Date2014-11-17 01:17 +0000
Message-ID<XnsA3E7CE5486792dougmilmaccom@213.239.209.88>
In reply to#14589
richard <noreply@example.com> wrote in news:13rt8vtwcr8c1$.1laagc89p3o0k.dlg@
40tude.net:

> On Mon, 17 Nov 2014 01:53:17 +0100, Thomas 'PointedEars' Lahn wrote:
[usual pedantic crap from PointedHead elided]
> But you are free to write to my news provider, newsguy.com and complain all
> you want.

richard, just a suggestion -- you will find this newsgroup to be a more peaceful place for you if 
you do what many of the rest of us have already done, namely to killfile PointedHead or at 
least ignore his pointless rants.

Dude needs more fiber in his diet.

[toc] | [prev] | [next] | [standalone]


#14592

FromJerry Stuckle <jstucklex@attglobal.net>
Date2014-11-16 22:08 -0500
Message-ID<m4born$7n9$1@dont-email.me>
In reply to#14590
On 11/16/2014 8:17 PM, Doug Miller wrote:
> richard <noreply@example.com> wrote in news:13rt8vtwcr8c1$.1laagc89p3o0k.dlg@
> 40tude.net:
> 
>> On Mon, 17 Nov 2014 01:53:17 +0100, Thomas 'PointedEars' Lahn wrote:
> [usual pedantic crap from PointedHead elided]
>> But you are free to write to my news provider, newsguy.com and complain all
>> you want.
> 
> richard, just a suggestion -- you will find this newsgroup to be a more peaceful place for you if 
> you do what many of the rest of us have already done, namely to killfile PointedHead or at 
> least ignore his pointless rants.
> 
> Dude needs more fiber in his diet.
> 

Doug,

I think I've figured out Pointed Head.  He's just a script kiddie - able
to copy and paste other people's work, but completely unable to
understand enough to write his own code.

So he complains about other people not asking clear questions (which the
rest of us understand), and only posts code others have already posted
in the thread or he's found on the internet somewhere.

I pity his clients.


-- 
==================
Remove the "x" from my email address
Jerry Stuckle
jstucklex@attglobal.net
==================

[toc] | [prev] | [next] | [standalone]


#14597

FromDenis McMahon <denismfmcmahon@gmail.com>
Date2014-11-17 16:02 +0000
Message-ID<m4d67a$gtd$1@dont-email.me>
In reply to#14592
On Sun, 16 Nov 2014 22:08:52 -0500, Jerry Stuckle wrote:

>> richard, just a suggestion -- you will find this newsgroup to be a more
>> peaceful place for you if you do what many of the rest of us have
>> already done, namely to killfile PointedHead or at least ignore his
>> pointless rants.

> I think I've figured out Pointed Head.  He's just a script kiddie - able
> to copy and paste other people's work, but completely unable to
> understand enough to write his own code.
> 
> So he complains about other people not asking clear questions (which the
> rest of us understand), and only posts code others have already posted
> in the thread or he's found on the internet somewhere.

He discovered the python group this week. Obviously he believes his 
extensive knowledge of Javascript and PHP newsgroups qualifies him as an 
expert there as well.

-- 
Denis McMahon, denismfmcmahon@gmail.com

[toc] | [prev] | [next] | [standalone]


#14602

FromThomas 'PointedEars' Lahn <PointedEars@web.de>
Date2014-11-17 22:38 +0100
Message-ID<1853215.TlJIHJoXIY@PointedEars.de>
In reply to#14597
Denis McMahon wrote:

> He discovered the python group this week. Obviously he believes his
> extensive knowledge of Javascript

There is no Javascript.  That has been explained to you many times before, 
but you do not listen.

> and PHP newsgroups

JavaScript *newsgroups*?  Can't you read English?

PHP *newsgroups*?  Can't you read sigs?  I have been using PHP 
professionally and in private for 14 years now.

> qualifies him as an expert there as well.

I have posted there before and given some good advice based on knowledge I 
have acquired during four years of professional Python programming followed 
by four at the university and in private (until now).  You would not know 
about that, of course, because you are not interested in the truth.

Go away.
 
-- 
PointedEars
Zend Certified PHP Engineer
Twitter: @PointedEars2
Please do not cc me. / Bitte keine Kopien per E-Mail.

[toc] | [prev] | [next] | [standalone]


#14625

FromEvan Platt <evan@theobvious.espphotography.com.invalid>
Date2014-11-21 16:53 -0800
Message-ID<minv6a5085h05l5ckn414e0nom3ouaojl6@4ax.com>
In reply to#14597
On Mon, 17 Nov 2014 16:02:50 +0000 (UTC), Denis McMahon
<denismfmcmahon@gmail.com> wrote:

>He discovered the python group this week. Obviously he believes his 
>extensive knowledge of Javascript and PHP newsgroups qualifies him as an 
>expert there as well.

Which group is that? My condolences to them LOL
-- 
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.

[toc] | [prev] | [next] | [standalone]


#14594

FromArno Welzel <usenet@arnowelzel.de>
Date2014-11-17 08:37 +0100
Message-ID<5469A5AE.9090402@arnowelzel.de>
In reply to#14590
Doug Miller schrieb am 2014-11-17 um 02:17:

> richard <noreply@example.com> wrote in news:13rt8vtwcr8c1$.1laagc89p3o0k.dlg@
> 40tude.net:
> 
>> On Mon, 17 Nov 2014 01:53:17 +0100, Thomas 'PointedEars' Lahn wrote:
> [usual pedantic crap from PointedHead elided]
>> But you are free to write to my news provider, newsguy.com and complain all
>> you want.
> 
> richard, just a suggestion -- you will find this newsgroup to be a more peaceful place for you if 
> you do what many of the rest of us have already done, namely to killfile PointedHead or at 
> least ignore his pointless rants.
> 
> Dude needs more fiber in his diet.

You may not know richard yet - but he has proven many times that he is
either not willing or able to learn the principles of programming.

For many years now richard tries to build a website where visitors can
browse and listen to music clips and most (if not all) questions by him
have to with this topic.

Some "classics":

Mixing up "=" and "==" (I'm not sure, if richard still does not really
understand the difference).

Typos in the first place and a day (or hours) later richard withdraws
his question with a message like "ok, works now" or similar and of
course without any explanation what exactly he changed.

Total lack of understanding the principles of database design but still
trying to tell others why either a database are not neccessary at all or
why normalizing databases is not neccessary (since richard doesn't even
know what a "normalizing" means and therefore refuses to accept that
this may be useful).

Just ignore such threads.


-- 
Arno Welzel
http://arnowelzel.de
http://de-rec-fahrrad.de
http://fahrradzukunft.de

[toc] | [prev] | [next] | [standalone]


#14609

FromDoug Miller <doug_at_milmac_dot_com@example.com>
Date2014-11-18 20:28 +0000
Message-ID<XnsA3E99D5EF823Edougmilmaccom@213.239.209.88>
In reply to#14594
Arno Welzel <usenet@arnowelzel.de> wrote in
news:5469A5AE.9090402@arnowelzel.de: 

> Doug Miller schrieb am 2014-11-17 um 02:17:
> 
>> richard <noreply@example.com> wrote in
>> news:13rt8vtwcr8c1$.1laagc89p3o0k.dlg@ 40tude.net:
>> 
>>> On Mon, 17 Nov 2014 01:53:17 +0100, Thomas 'PointedEars' Lahn
>>> wrote: 
>> [usual pedantic crap from PointedHead elided]
>>> But you are free to write to my news provider, newsguy.com and
>>> complain all you want.
>> 
>> richard, just a suggestion -- you will find this newsgroup to
>> be a more peaceful place for you if you do what many of the
>> rest of us have already done, namely to killfile PointedHead or
>> at least ignore his pointless rants.
>> 
>> Dude needs more fiber in his diet.
> 
> You may not know richard yet - but he has proven many times that
> he is either not willing or able to learn the principles of
> programming. 

I'm well aware of richard's history; evidently, you're either new here, or haven't been paying 
attention, as you don't seem aware that I'm one of richard's harshest critics.

Just the same, even incompetents such as richard deserve to be warned away from 
pedantic trolls such as PointedHead.

[toc] | [prev] | [next] | [standalone]


#14593

FromThomas 'PointedEars' Lahn <PointedEars@web.de>
Date2014-11-17 08:08 +0100
Message-ID<5137910.ZzbNPpoMJB@PointedEars.de>
In reply to#14589
richard wrote:

> Example Domain
> 
> This domain is established to be used for illustrative examples in
> documents. You may use this domain in examples without prior coordination
> or asking for permission.
> 
> As described in RFC 2606 and RFC 6761, a number of domains such as
> example.com and example.org for documentation purposes. These domains may
> be used as illustrative examples in documents without prior coordination
> with us. They are not available for registration or transfer.

They are for *documentation*.  A “From” header field is _not_ documentation, 
and it must comply with RFC _5322_, which yours does not.

> It has been long accepted by most news providers and ISP's that usage of
> this domain name for posting to usenet is not a violation of any kind.

You are wrong.  The “invalid” TLD has been accepted by some providers for 
such uses; yet, using it is not any less anti-social.

> But you are free to write to my news provider, newsguy.com and complain
> all you want.

Why do I even bother replying to you?  You clearly do not want any help, you 
just want to whine publicly about your misfortune.
 
-- 
PointedEars
Zend Certified PHP Engineer
Twitter: @PointedEars2
Please do not Cc: me. / Bitte keine Kopien per E-Mail.

[toc] | [prev] | [next] | [standalone]


#14601

FromJim Higgins <ILikeMy@Privacy.invalid>
Date2014-11-17 20:53 +0000
Message-ID<crnk6adpg935koh0dv59f2ocq83do9q6d1@4ax.com>
In reply to#14593
On Mon, 17 Nov 2014 08:08:20 +0100, in
<5137910.ZzbNPpoMJB@PointedEars.de>, Thomas 'PointedEars' Lahn
<PointedEars@web.de> wrote:

[ snip about posting to Usenet ]

>The “invalid” TLD has been accepted by some providers for 
>such uses; yet, using it is not any less anti-social.

Exactly what does "anti-social" mean in this context?

[toc] | [prev] | [next] | [standalone]


#14603

FromMatthew Carter <m@ahungry.com>
Date2014-11-17 21:03 -0500
Message-ID<87egt12rjv.fsf@ahungry.com>
In reply to#14601
Jim Higgins <ILikeMy@Privacy.invalid> writes:

> On Mon, 17 Nov 2014 08:08:20 +0100, in
> <5137910.ZzbNPpoMJB@PointedEars.de>, Thomas 'PointedEars' Lahn
> <PointedEars@web.de> wrote:
>
> [ snip about posting to Usenet ]
>
>>The “invalid” TLD has been accepted by some providers for 
>>such uses; yet, using it is not any less anti-social.
>
> Exactly what does "anti-social" mean in this context?

Jim, I tried to email you but it seems your domain privacy.invalid is
down at the moment /s

Although, I wonder if that is a legitimate TLD now :)

-- 
Matthew Carter (m@ahungry.com)
http://ahungry.com

[toc] | [prev] | [next] | [standalone]


#14634

FromJim Higgins <ILikeMy@Privacy.invalid>
Date2014-11-26 01:53 +0000
Message-ID<nvaa7alapcu1htsf44t0si8pehs95adh0i@4ax.com>
In reply to#14603
On Mon, 17 Nov 2014 21:03:48 -0500, in <87egt12rjv.fsf@ahungry.com>,
Matthew Carter <m@ahungry.com> wrote:

>Jim Higgins <ILikeMy@Privacy.invalid> writes:
>
>> On Mon, 17 Nov 2014 08:08:20 +0100, in
>> <5137910.ZzbNPpoMJB@PointedEars.de>, Thomas 'PointedEars' Lahn
>> <PointedEars@web.de> wrote:
>>
>> [ snip about posting to Usenet ]
>>
>>>The “invalid” TLD has been accepted by some providers for 
>>>such uses; yet, using it is not any less anti-social.
>>
>> Exactly what does "anti-social" mean in this context?
>
>Jim, I tried to email you but it seems your domain privacy.invalid is
>down at the moment /s
>
>Although, I wonder if that is a legitimate TLD now :)


From RFC2606... (emphasis below mine)

" '.invalid' is intended for use in online construction of domain
names that are sure to be invalid and which it is OBVIOUS AT A GLANCE
are invalid."

Sooo... was it not "obvious at a glance"... or were you just feeling
"anti-social" when you tried to email me?  ;-)

[toc] | [prev] | [next] | [standalone]


#14846

From"M. Strobel" <strobel@example.com>
Date2015-01-30 21:14 +0100
Message-ID<magolr$oka$2@dont-email.me>
In reply to#14593
On 17.11.2014 08:08, Thomas 'PointedEars' Lahn wrote:
> richard wrote:
>
>> Example Domain
>>
>> This domain is established to be used for illustrative examples in
>> documents. You may use this domain in examples without prior coordination
>> or asking for permission.
>>
>> As described in RFC 2606 and RFC 6761, a number of domains such as
>> example.com and example.org for documentation purposes. These domains may
>> be used as illustrative examples in documents without prior coordination
>> with us. They are not available for registration or transfer.
>
> They are for *documentation*.  A “From” header field is _not_ documentation,
> and it must comply with RFC _5322_, which yours does not.
>

No need to shout. I read that you write an email address as yourname@example.com,
and I understood you have to exchange yourname. Not thaat difficult...

/Str.


[toc] | [prev] | [next] | [standalone]


#14591

FromJerry Stuckle <jstucklex@attglobal.net>
Date2014-11-16 22:06 -0500
Message-ID<m4boo0$7n4$1@dont-email.me>
In reply to#14588
On 11/16/2014 7:53 PM, Thomas 'PointedEars' Lahn wrote:
> richard wrote:
> 
>> On Sun, 16 Nov 2014 23:35:32 +0000 (UTC), Denis McMahon wrote:
>>> On Sun, 16 Nov 2014 13:56:12 -0500, richard wrote:
>>>> According to the documentation from wimpy player, you are supposed to be
>>>> able to send data from the player to an external page.
>>>> They do this using a <comment> tag.
>>>> Such as <comment>pagefile.php?data=value</comment>
>>>> Quote are not required here.
>>>>
>>>> What's the proper way in getting the php file to store this information
>>>> until it is displayed?
>>>>
>>>> I tried using $GET but that does not work.
>>> That's because it's not $GET. Spell it right and it will work.
>>
>> Still does not work.
> 
> “Does not work” is not a problem *description*.  And what you have written 
> so far is not close to something a third person would have a chance to 
> understand, much less reproduce.  I would have referred you to “How To Ask 
> Questions The Smart Way” now but you already know it and still ignore the 
> good advice it gives.  You are also still abusing the example.com domain.  
> Well, your choice.
> 

The answer is clear.  Unfortunately, both you and richard are in the
same boat - can't understand a clear answer.

-- 
==================
Remove the "x" from my email address
Jerry Stuckle
jstucklex@attglobal.net
==================

[toc] | [prev] | [next] | [standalone]


#14595

FromTim Streater <timstreater@greenbee.net>
Date2014-11-17 09:53 +0000
Message-ID<171120140953345789%timstreater@greenbee.net>
In reply to#14587
In article <10u6qvgx195rr.71f84qenegsc$.dlg@40tude.net>, richard
<noreply@example.com> wrote:

> On Sun, 16 Nov 2014 23:35:32 +0000 (UTC), Denis McMahon wrote:
> 
> > On Sun, 16 Nov 2014 13:56:12 -0500, richard wrote:
> > 
> >> According to the documentation from wimpy player, you are supposed to be
> >> able to send data from the player to an external page.
> >> They do this using a <comment> tag.
> >> Such as <comment>pagefile.php?data=value</comment>
> >> Quote are not required here.
> >> 
> >> What's the proper way in getting the php file to store this information
> >> until it is displayed?
> >> 
> >> I tried using $GET but that does not work.
> > 
> > That's because it's not $GET. Spell it right and it will work.
> 
> Still does not work.

Oh dear, I am sorry to hear that. Have you been to the Doctor about it?
There are some very good treatments available these days, I'm told.

-- 
"A committee is a cul-de-sac down which ideas are lured and then 
 quietly strangled." - Sir Barnett Cocks (1907-1989)

[toc] | [prev] | [next] | [standalone]


#14598

FromDenis McMahon <denismfmcmahon@gmail.com>
Date2014-11-17 16:05 +0000
Message-ID<m4d6d3$gtd$2@dont-email.me>
In reply to#14587
On Sun, 16 Nov 2014 19:00:52 -0500, richard wrote:

> On Sun, 16 Nov 2014 23:35:32 +0000 (UTC), Denis McMahon wrote:
> 
>> On Sun, 16 Nov 2014 13:56:12 -0500, richard wrote:
>> 
>>> According to the documentation from wimpy player, you are supposed to
>>> be able to send data from the player to an external page.
>>> They do this using a <comment> tag.
>>> Such as <comment>pagefile.php?data=value</comment>
>>> Quote are not required here.
>>> 
>>> What's the proper way in getting the php file to store this
>>> information until it is displayed?
>>> 
>>> I tried using $GET but that does not work.
>> 
>> That's because it's not $GET. Spell it right and it will work.
> 
> Still does not work.

Then perhaps you have misunderstood the wimpy player api.

-- 
Denis McMahon, denismfmcmahon@gmail.com

[toc] | [prev] | [next] | [standalone]


Page 1 of 2  [1] 2  Next page →

Back to top | Article view | comp.lang.php


csiph-web