FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » passing variable to a nested array
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
passing variable to a nested array [message #171997] Thu, 27 January 2011 05:31 Go to next message
Andrew is currently offline  Andrew
Messages: 2
Registered: January 2011
Karma: 0
Junior Member
Here's an interesting item I could use some help with. Let's say I have a row of
boxes made from <ul><li> tags, named "A", "B", "C". When a visitor clicks on
"A", a list of names and other information appear below that row. How can I
direct the code to select the proper array?
I know about nested arrays. Will I need a nest for each <li> block or what?
Re: passing variable to a nested array [message #171998 is a reply to message #171997] Thu, 27 January 2011 08:27 Go to previous messageGo to next message
alvaro.NOSPAMTHANX is currently offline  alvaro.NOSPAMTHANX
Messages: 277
Registered: September 2010
Karma: 0
Senior Member
El 27/01/2011 6:31, Andrew escribió/wrote:
> Here's an interesting item I could use some help with. Let's say I have a row of
> boxes made from<ul><li> tags, named "A", "B", "C". When a visitor clicks on
> "A", a list of names and other information appear below that row. How can I
> direct the code to select the proper array?
> I know about nested arrays. Will I need a nest for each<li> block or what?

You don't post a single line of code because you haven't started the
script yet or because you want to make us guess? :-P


--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://borrame.com
-- Mi web de humor satinado: http://www.demogracia.com
--
Re: passing variable to a nested array [message #171999 is a reply to message #171998] Thu, 27 January 2011 09:22 Go to previous messageGo to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
On Thu, 27 Jan 2011 09:27:14 +0100, "Álvaro G. Vicario" wrote:

> El 27/01/2011 6:31, Andrew escribió/wrote:
>> Here's an interesting item I could use some help with. Let's say I have a row of
>> boxes made from<ul><li> tags, named "A", "B", "C". When a visitor clicks on
>> "A", a list of names and other information appear below that row. How can I
>> direct the code to select the proper array?
>> I know about nested arrays. Will I need a nest for each<li> block or what?
>
> You don't post a single line of code because you haven't started the
> script yet or because you want to make us guess? :-P

Ok so heres the code:
<ul>
<li> Au</li>
<li>Fook</li>
<li>Yew</li>
</ul>

The rule is, you must ask, "Where's the url?".
Re: passing variable to a nested array [message #172000 is a reply to message #171999] Thu, 27 January 2011 10:09 Go to previous messageGo to next message
alvaro.NOSPAMTHANX is currently offline  alvaro.NOSPAMTHANX
Messages: 277
Registered: September 2010
Karma: 0
Senior Member
El 27/01/2011 10:22, richard escribió/wrote:
> On Thu, 27 Jan 2011 09:27:14 +0100, "Álvaro G. Vicario" wrote:
>
>> El 27/01/2011 6:31, Andrew escribió/wrote:
>>> Here's an interesting item I could use some help with. Let's say I have a row of
>>> boxes made from<ul><li> tags, named "A", "B", "C". When a visitor clicks on
>>> "A", a list of names and other information appear below that row. How can I
>>> direct the code to select the proper array?
>>> I know about nested arrays. Will I need a nest for each<li> block or what?
>>
>> You don't post a single line of code because you haven't started the
>> script yet or because you want to make us guess? :-P
>
> Ok so heres the code:
> <ul>
> <li> Au</li>
> <li>Fook</li>
> <li>Yew</li>
> </ul>

If that's the code, then I'm afraid the question is beyond my PHP
skills, sorry.


> The rule is, you must ask, "Where's the url?".

I beg your pardon?


--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://borrame.com
-- Mi web de humor satinado: http://www.demogracia.com
--
Re: passing variable to a nested array [message #172001 is a reply to message #172000] Thu, 27 January 2011 10:54 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On 27/01/11 10:09, "Álvaro G. Vicario" wrote:

> If that's the code, then I'm afraid the question is beyond my PHP
> skills, sorry.

It's ok, all code is beyond richard's skills.

I'm not sure I understood the OPs question either, and if I was the OP
I'd be worried by the fact that it seems richard did.

Rgds

Denis McMahon
Re: passing variable to a nested array [message #172002 is a reply to message #171999] Thu, 27 January 2011 10:59 Go to previous messageGo to next message
Gregor Kofler is currently offline  Gregor Kofler
Messages: 69
Registered: September 2010
Karma: 0
Member
Am 2011-01-27 10:22, richard meinte:

Richard? Andrew?

> Ok so heres the code:
> <ul>
> <li> Au</li>
> <li>Fook</li>
> <li>Yew</li>
> </ul>

Interesting PHP.

> The rule is, you must ask, "Where's the url?".

Makes particular sense for server-side parsed languages.

Gregor


--
http://vxweb.net
Re: passing variable to a nested array [message #172003 is a reply to message #171997] Thu, 27 January 2011 13:40 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On 27/01/11 05:31, Andrew wrote:
> Here's an interesting item I could use some help with. Let's say I have a row of
> boxes made from <ul><li> tags, named "A", "B", "C". When a visitor clicks on
> "A", a list of names and other information appear below that row. How can I
> direct the code to select the proper array?
> I know about nested arrays. Will I need a nest for each <li> block or what?

Clicking on a list item (li) element will do nothing in php. Perhaps
you're looking to do something in javascript in response to a list item
element's onclick handler, in which case you'll need to ask in a
javascript group.

Rgds

Denis McMahon
Re: passing variable to a nested array [message #172004 is a reply to message #172001] Thu, 27 January 2011 14:21 Go to previous messageGo to next message
Captain Paralytic is currently offline  Captain Paralytic
Messages: 204
Registered: September 2010
Karma: 0
Senior Member
On Jan 27, 10:54 am, Denis McMahon <denis.m.f.mcma...@googlemail.com>
wrote:
> On 27/01/11 10:09, "Álvaro G. Vicario" wrote:
>
>> If that's the code, then I'm afraid the question is beyond my PHP
>> skills, sorry.
>
> It's ok, all code is beyond richard's skills.
>
> I'm not sure I understood the OPs question either, and if I was the OP
> I'd be worried by the fact that it seems richard did.
>
> Rgds
>
> Denis McMahon

Look at the email address of the OP and carefully read Richard's
reply. I suspect that the OP may be Richard.
Re: passing variable to a nested array [message #172005 is a reply to message #172001] Thu, 27 January 2011 14:47 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Thu, 27 Jan 2011 10:54:38 +0000, Denis McMahon
<denis(dot)m(dot)f(dot)mcmahon(at)googlemail(dot)com> wrote:

> On 27/01/11 10:09, "Álvaro G. Vicario" wrote:
>
>> If that's the code, then I'm afraid the question is beyond my PHP
>> skills, sorry.
>
> It's ok, all code is beyond richard's skills.
>
> I'm not sure I understood the OPs question either, and if I was the OP
> I'd be worried by the fact that it seems richard did.

The OP IS richard.

richard creates sock puppets, and richard uses newsguy. Look at the OP
- it's from
From: Andrew <Andrew_member(at)newsguy(dot)com>
User-Agent: Direct Read News 5.60

Direct Read is newsguy's web based interface which allows you to use
any "From" you want.

bullshit bullis is known to create name_member(at)newsguy(dot)com sock
puppets in other groups, then when called out that it's a sock puppet,
challenges others to prove it. When shown proof, he crawls back under
his rock, like usual.

--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: passing variable to a nested array [message #172006 is a reply to message #172004] Thu, 27 January 2011 15:10 Go to previous messageGo to next message
Beauregard T. Shagnas is currently offline  Beauregard T. Shagnas
Messages: 154
Registered: September 2010
Karma: 0
Senior Member
Captain Paralytic wrote:

> Denis McMahon wrote:
>> It's ok, all code is beyond richard's skills.
>>
>> I'm not sure I understood the OPs question either, and if I was the
>> OP I'd be worried by the fact that it seems richard did.
>
> Look at the email address of the OP and carefully read Richard's
> reply. I suspect that the OP may be Richard.

You suspect correctly, Captain. He does this stupid nymshifting in
other groups as well, almost always when he wants to ask a question.
Then he will respond to the repliers as "richard" and tell them to "Au
Fook Yew" or similar brush-offs.

Denis is correct as well. "all code is beyond richard's skills." And,
most anything else in life.

--
-bts
-This poast is valid through December 21, 2012
Re: passing variable to a nested array [message #172007 is a reply to message #172006] Thu, 27 January 2011 15:38 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Thu, 27 Jan 2011 10:10:53 -0500, "Beauregard T. Shagnasty"
<a(dot)nony(dot)mous(at)example(dot)invalid> wrote:

> You suspect correctly, Captain. He does this stupid nymshifting in
> other groups as well, almost always when he wants to ask a question.
> Then he will respond to the repliers as "richard" and tell them to "Au
> Fook Yew" or similar brush-offs.
>
> Denis is correct as well. "all code is beyond richard's skills." And,
> most anything else in life.

And now he'll either say "Prove it", or won't even have the guts to
admit it's him, and not respond at all. I'll go with B.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: passing variable to a nested array [message #172008 is a reply to message #172005] Thu, 27 January 2011 16:24 Go to previous messageGo to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
On Thu, 27 Jan 2011 06:47:36 -0800, Evan Platt wrote:

> On Thu, 27 Jan 2011 10:54:38 +0000, Denis McMahon
> <denis(dot)m(dot)f(dot)mcmahon(at)googlemail(dot)com> wrote:
>
>> On 27/01/11 10:09, "Álvaro G. Vicario" wrote:
>>
>>> If that's the code, then I'm afraid the question is beyond my PHP
>>> skills, sorry.
>>
>> It's ok, all code is beyond richard's skills.
>>
>> I'm not sure I understood the OPs question either, and if I was the OP
>> I'd be worried by the fact that it seems richard did.
>
> The OP IS richard.
>
> richard creates sock puppets, and richard uses newsguy. Look at the OP
> - it's from
> From: Andrew <Andrew_member(at)newsguy(dot)com>
> User-Agent: Direct Read News 5.60
>
> Direct Read is newsguy's web based interface which allows you to use
> any "From" you want.
>
> bullshit bullis is known to create name_member(at)newsguy(dot)com sock
> puppets in other groups, then when called out that it's a sock puppet,
> challenges others to prove it. When shown proof, he crawls back under
> his rock, like usual.

bwaaaaaaaahahahahaaha
the great benjamin "sherlock holmes" matlock strikes again.
how many times have I explained this? Anyone with a newsguy account can
post through that interface. Whatever nick they use is appended with
_member(at)newsguy(dot)com. member@ is a spam trap. Any mail sent to any addy
using that style is automagically trashed.
which is why I use the addy.
Re: passing variable to a nested array [message #172009 is a reply to message #172008] Thu, 27 January 2011 16:45 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Thu, 27 Jan 2011 09:24:22 -0700, richard <member(at)newsguy(dot)com>
wrote:

> bwaaaaaaaahahahahaaha
> the great benjamin "sherlock holmes" matlock strikes again.

Benjamin sherlock holmes matlock?

Are you fucking retarded?

> how many times have I explained this? Anyone with a newsguy account can
> post through that interface. Whatever nick they use is appended with
> _member(at)newsguy(dot)com. member@ is a spam trap. Any mail sent to any addy
> using that style is automagically trashed.
> which is why I use the addy.

Yeah, we get it bullis. It was you who posted as "Andrew".

It's OK, you don't need to admit it.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: passing variable to a nested array [message #172010 is a reply to message #172009] Thu, 27 January 2011 17:01 Go to previous messageGo to next message
me is currently offline  me
Messages: 192
Registered: September 2010
Karma: 0
Senior Member
On 1/27/2011 11:45 AM, Evan Platt wrote:
> On Thu, 27 Jan 2011 09:24:22 -0700, richard<member(at)newsguy(dot)com>
> wrote:
>
>> bwaaaaaaaahahahahaaha
>> the great benjamin "sherlock holmes" matlock strikes again.
>
> Benjamin sherlock holmes matlock?
>
> Are you fucking retarded?

Mr. Platt, you can make your point without belittling others and
diminishing yourself.

Bill B
Re: passing variable to a nested array [message #172011 is a reply to message #172010] Thu, 27 January 2011 17:06 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Thu, 27 Jan 2011 12:01:44 -0500, Bill B <me(at)privacy(dot)net> wrote:

> Mr. Platt, you can make your point without belittling others and
> diminishing yourself.

You obviously don't know richard. Nothing else gets the point across
to him.

As a matter of fact, to be honest, nothing ever gets the point across
to him.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: passing variable to a nested array [message #172012 is a reply to message #172011] Thu, 27 January 2011 17:08 Go to previous messageGo to next message
me is currently offline  me
Messages: 192
Registered: September 2010
Karma: 0
Senior Member
On 1/27/2011 12:06 PM, Evan Platt wrote:
> On Thu, 27 Jan 2011 12:01:44 -0500, Bill B<me(at)privacy(dot)net> wrote:
>
>> Mr. Platt, you can make your point without belittling others and
>> diminishing yourself.
>
> You obviously don't know richard. Nothing else gets the point across
> to him.
>
> As a matter of fact, to be honest, nothing ever gets the point across
> to him.

That may be true on all counts, and, none of that even remotely
justifies incivility.

Bill B
Re: passing variable to a nested array [message #172013 is a reply to message #171997] Thu, 27 January 2011 18:20 Go to previous messageGo to next message
Andrew is currently offline  Andrew
Messages: 2
Registered: January 2011
Karma: 0
Junior Member
In article <ihqvv501ot1(at)drn(dot)newsguy(dot)com>, Andrew says...
>
> Here's an interesting item I could use some help with. Let's say I have a row of
> boxes made from <ul><li> tags, named "A", "B", "C". When a visitor clicks on
> "A", a list of names and other information appear below that row. How can I
> direct the code to select the proper array?
> I know about nested arrays. Will I need a nest for each <li> block or what?
>

Well, I was able to find a script that actually creates the basic menu as I
want.

http://www.phpeasycode.com/sitemenu/

So now with some tweaking I can create the <li> driven menu system as I wanted.

Who the hell is this richard chap you guys seem to think I am? You guys seem to
think anyone who asks a simple question must be this idiot. I can assure you, I
am not him. Yes, my question was a bit vague, but apparently google didn't seem
to think so. Google doesn't talk back and hit the user with lame ass flames
either.
Re: passing variable to a nested array [message #172014 is a reply to message #172013] Thu, 27 January 2011 18:26 Go to previous messageGo to next message
webmaster is currently offline  webmaster
Messages: 5
Registered: October 2010
Karma: 0
Junior Member
"Andrew" <Andrew_member(at)newsguy(dot)com> wrote in message
news:ihsd1001bha(at)drn(dot)newsguy(dot)com...
> In article <ihqvv501ot1(at)drn(dot)newsguy(dot)com>, Andrew says...
>>
>> Here's an interesting item I could use some help with. Let's say I have a
>> row of
>> boxes made from <ul><li> tags, named "A", "B", "C". When a visitor clicks
>> on
>> "A", a list of names and other information appear below that row. How can
>> I
>> direct the code to select the proper array?
>> I know about nested arrays. Will I need a nest for each <li> block or
>> what?
>>
>
> Well, I was able to find a script that actually creates the basic menu as
> I
> want.
>
> http://www.phpeasycode.com/sitemenu/
>
> So now with some tweaking I can create the <li> driven menu system as I
> wanted.
>
> Who the hell is this richard chap you guys seem to think I am? You guys
> seem to
> think anyone who asks a simple question must be this idiot. I can assure
> you, I
> am not him. Yes, my question was a bit vague, but apparently google didn't
> seem
> to think so. Google doesn't talk back and hit the user with lame ass
> flames
> either.
>

ROFL!

"Mother. Mother, please, she's just a stranger"

--
+mrcakey
Re: passing variable to a nested array [message #172017 is a reply to message #172014] Thu, 27 January 2011 19:16 Go to previous messageGo to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
On Thu, 27 Jan 2011 18:26:21 -0000, +mrcakey wrote:

> "Andrew" <Andrew_member(at)newsguy(dot)com> wrote in message
> news:ihsd1001bha(at)drn(dot)newsguy(dot)com...
>> In article <ihqvv501ot1(at)drn(dot)newsguy(dot)com>, Andrew says...
>>>
>>> Here's an interesting item I could use some help with. Let's say I have a
>>> row of
>>> boxes made from <ul><li> tags, named "A", "B", "C". When a visitor clicks
>>> on
>>> "A", a list of names and other information appear below that row. How can
>>> I
>>> direct the code to select the proper array?
>>> I know about nested arrays. Will I need a nest for each <li> block or
>>> what?
>>>
>>
>> Well, I was able to find a script that actually creates the basic menu as
>> I
>> want.
>>
>> http://www.phpeasycode.com/sitemenu/
>>
>> So now with some tweaking I can create the <li> driven menu system as I
>> wanted.
>>
>> Who the hell is this richard chap you guys seem to think I am? You guys
>> seem to
>> think anyone who asks a simple question must be this idiot. I can assure
>> you, I
>> am not him. Yes, my question was a bit vague, but apparently google didn't
>> seem
>> to think so. Google doesn't talk back and hit the user with lame ass
>> flames
>> either.
>>
>
> ROFL!
>
> "Mother. Mother, please, she's just a stranger"

I stand tall with my back straight and tight, I click the heels of my shiny
boots twice, stretch my arm out to the sky and shout, "Seig Heil! Seig
Heil! Meinen Fuhrer!"


I wonder how you smart asses would respond if President Obama, while
broadcasting on live tv, entered this group and posted a simple question.
You guys would trample all over him, flames abounding, and claiming that he
must be a troll and someone else.
Re: passing variable to a nested array [message #172018 is a reply to message #172017] Thu, 27 January 2011 19:52 Go to previous messageGo to next message
sheldonlg is currently offline  sheldonlg
Messages: 166
Registered: September 2010
Karma: 0
Senior Member
On 1/27/2011 2:16 PM, richard wrote:
> On Thu, 27 Jan 2011 18:26:21 -0000, +mrcakey wrote:
>
>> "Andrew"<Andrew_member(at)newsguy(dot)com> wrote in message
>> news:ihsd1001bha(at)drn(dot)newsguy(dot)com...
>>> In article<ihqvv501ot1(at)drn(dot)newsguy(dot)com>, Andrew says...
>>>>
>>>> Here's an interesting item I could use some help with. Let's say I have a
>>>> row of
>>>> boxes made from<ul><li> tags, named "A", "B", "C". When a visitor clicks
>>>> on
>>>> "A", a list of names and other information appear below that row. How can
>>>> I
>>>> direct the code to select the proper array?
>>>> I know about nested arrays. Will I need a nest for each<li> block or
>>>> what?
>>>>
>>>
>>> Well, I was able to find a script that actually creates the basic menu as
>>> I
>>> want.
>>>
>>> http://www.phpeasycode.com/sitemenu/
>>>
>>> So now with some tweaking I can create the<li> driven menu system as I
>>> wanted.
>>>
>>> Who the hell is this richard chap you guys seem to think I am? You guys
>>> seem to
>>> think anyone who asks a simple question must be this idiot. I can assure
>>> you, I
>>> am not him. Yes, my question was a bit vague, but apparently google didn't
>>> seem
>>> to think so. Google doesn't talk back and hit the user with lame ass
>>> flames
>>> either.
>>>
>>
>> ROFL!
>>
>> "Mother. Mother, please, she's just a stranger"
>
> I stand tall with my back straight and tight, I click the heels of my shiny
> boots twice, stretch my arm out to the sky and shout, "Seig Heil! Seig
> Heil! Meinen Fuhrer!"
>
>
> I wonder how you smart asses would respond if President Obama, while
> broadcasting on live tv, entered this group and posted a simple question.
> You guys would trample all over him, flames abounding, and claiming that he
> must be a troll and someone else.

Half the group would flame him just because of who he is.

--
Shelly
Re: passing variable to a nested array [message #172020 is a reply to message #172010] Thu, 27 January 2011 20:40 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On 27/01/11 17:01, Bill B wrote:

> Mr. Platt, you can make your point without belittling others and
> diminishing yourself.

But apparently he can't.

Rgds

Denis McMahon
Re: passing variable to a nested array [message #172022 is a reply to message #172020] Thu, 27 January 2011 20:44 Go to previous messageGo to next message
me is currently offline  me
Messages: 192
Registered: September 2010
Karma: 0
Senior Member
On 1/27/2011 3:40 PM, Denis McMahon wrote:
> On 27/01/11 17:01, Bill B wrote:
>
>> Mr. Platt, you can make your point without belittling others and
>> diminishing yourself.
>
> But apparently he can't.
>
> Rgds
>
> Denis McMahon

My expectations of Mr. Platt are higher than yours. I expect he will
fare just fine.

Bill B
Re: passing variable to a nested array [message #172023 is a reply to message #172013] Thu, 27 January 2011 20:52 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On 27/01/11 18:20, richard wrote:
> In article <ihqvv501ot1(at)drn(dot)newsguy(dot)com>, Andrew says...
>>
>> Here's an interesting item I could use some help with. Let's say I have a row of
>> boxes made from <ul><li> tags, named "A", "B", "C". When a visitor clicks on
>> "A", a list of names and other information appear below that row. How can I
>> direct the code to select the proper array?
>> I know about nested arrays. Will I need a nest for each <li> block or what?

> Well, I was able to find a script that actually creates the basic menu as I
> want.

> http://www.phpeasycode.com/sitemenu/

No you didn't.

That script doesn't have any functionality that matches your original
post apart from creating a list using ul and li tags.

So, either your original question bore no resemblance to what you
actually wanted to do and hence nobody was ever going to get the right
answer, or you have no understanding of what the script does whatsoever,
or more likely, both.

Rgds

Denis McMahon
Re: passing variable to a nested array [message #172025 is a reply to message #172022] Thu, 27 January 2011 21:02 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On 27/01/11 20:44, Bill B wrote:
> On 1/27/2011 3:40 PM, Denis McMahon wrote:
>> On 27/01/11 17:01, Bill B wrote:
>>
>>> Mr. Platt, you can make your point without belittling others and
>>> diminishing yourself.
>>
>> But apparently he can't.

> My expectations of Mr. Platt are higher than yours. I expect he will
> fare just fine.

Yeah, I got confused, I thought it was richard being a pratt that you
were commenting on.

Apologies to EP for that mix up.

Rgds

Denis McMahon
Re: passing variable to a nested array [message #172026 is a reply to message #172013] Thu, 27 January 2011 21:09 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On 27/01/11 18:20, Andrew wrote:

> Who the hell is this richard chap you guys seem to think I am?

I just checked the echelon logs. It's you. Or you're him.

Rgds

Denis McMahon
Re: passing variable to a nested array [message #172033 is a reply to message #172010] Fri, 28 January 2011 02:09 Go to previous messageGo to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
On Thu, 27 Jan 2011 12:01:44 -0500, Bill B wrote:

> On 1/27/2011 11:45 AM, Evan Platt wrote:
>> On Thu, 27 Jan 2011 09:24:22 -0700, richard<member(at)newsguy(dot)com>
>> wrote:
>>
>>> bwaaaaaaaahahahahaaha
>>> the great benjamin "sherlock holmes" matlock strikes again.
>>
>> Benjamin sherlock holmes matlock?
>>
>> Are you fucking retarded?
>
> Mr. Platt, you can make your point without belittling others and
> diminishing yourself.
>
> Bill B

Mr. Platt is my apppointed watchdog and stalker. It is his desire to ensure
others get the word about what I am.

I had been posting in a trucking group for over 5 years, he comes along and
makes others think he's some bad ass trucker. Just to ride on my case and
"prove me wrong" at all costs.
He'll take posts of mine, twist the words around and claim that is what I
said. Platt is nothing more than an ignorant troll who should be avoided.
Re: passing variable to a nested array [message #172036 is a reply to message #172026] Fri, 28 January 2011 03:47 Go to previous messageGo to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
On Thu, 27 Jan 2011 21:09:02 +0000, Denis McMahon wrote:

> On 27/01/11 18:20, Andrew wrote:
>
>> Who the hell is this richard chap you guys seem to think I am?
>
> I just checked the echelon logs. It's you. Or you're him.
>
> Rgds
>
> Denis McMahon

bwaaaaaaaaaaaaahhhhhhhhhhahahahahaha
post the proof.

I'll have to notify newsguy that they've been hacked an incompetent fool
and liar.
Re: passing variable to a nested array [message #172037 is a reply to message #172033] Fri, 28 January 2011 04:11 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Thu, 27 Jan 2011 19:09:20 -0700, richard <member(at)newsguy(dot)com>
wrote:

> Mr. Platt is my apppointed watchdog and stalker. It is his desire to ensure
> others get the word about what I am.

*sigh* Here we go again.

It's you who posted my home address and work address, and stated "I'm
going to come to your work and kick your ass".

Who's the stalker?

> I had been posting in a trucking group for over 5 years,

Yep, and they all think you're an idiot there too.

> he comes along and makes others think he's some bad ass trucker.

LOL, no, I didn't.

You made a stupid comment, I corrected you, and you reply "Go away,
you come in here talking like you're some bad ass trucker" and about
half a dozen people asked you where I ever stated anything to say I'm
a trucker. Poof, you vanish, like the sad little troll you are.

> Just to ride on my case and "prove me wrong" at all costs.

There's no "all costs". You open your mouth, you're wrong.

> He'll take posts of mine, twist the words around and claim that is what I
> said.

No, you're confusing me with yourself again.

YOU do that, and then when others ask you for the Message ID or direct
quote, you fail to EVER provide it.

Case in point:

A person was having a problem connecting to the internet. They used
Symantec Firewall. This was a known issue we saw at work, and the fix
was to upgrade to the latest version of Symantec (or, obviously
uninstall Symantec) but the bug was in a certain older version of
Symantec Firewall.

Two days later, Bullshit bullis posts "Evan is so stupid... he says if
you want to connect to the internet, you need to install Symantec
Firewall."
About a dozen people corrected his stupidity, he didn't listen.

He then whined how I correct him.

I then stated "If I came into your beloved trucking group, and stated
that I drove trucks, and that all trucks are automatic and have 22
gears, would you not correct me?"
The next day - you guessed it - he stated "Evan's so stupid, he thinks
trucks are all automatic and have 22 gears."

> Platt is nothing more than an ignorant troll who should be avoided.

I think it's obvious who the troll is Bullis.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: passing variable to a nested array [message #172038 is a reply to message #172013] Fri, 28 January 2011 04:15 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On 27 Jan 2011 10:20:16 -0800, Andrew <Andrew_member(at)newsguy(dot)com>
wrote:

> Who the hell is this richard chap you guys seem to think I am?

Clue #1: People with an IQ above 20 capitalize proper names.

Bullshit Bullis does not. He is not Richard, he is richard.

Anyone other than bullis would say "Who is this Richard chap".

> You guys seem to think anyone who asks a simple question must be this idiot.

No, just an idiot who posts through newsguy.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: passing variable to a nested array [message #172042 is a reply to message #172036] Fri, 28 January 2011 07:17 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On 28/01/11 03:47, richard wrote:
> On Thu, 27 Jan 2011 21:09:02 +0000, Denis McMahon wrote:
>
>> On 27/01/11 18:20, Andrew wrote:
>>
>>> Who the hell is this richard chap you guys seem to think I am?
>>
>> I just checked the echelon logs. It's you. Or you're him.
>>
>> Rgds
>>
>> Denis McMahon
>
> bwaaaaaaaaaaaaahhhhhhhhhhahahahahaha
> post the proof.
>
> I'll have to notify newsguy that they've been hacked an incompetent fool
> and liar.

I said I checked the echelon logs, not the newsguy logs.

HTH. HAND.

Rgds

Denis McMahon
Re: passing variable to a nested array [message #172045 is a reply to message #172013] Fri, 28 January 2011 09:24 Go to previous messageGo to next message
Captain Paralytic is currently offline  Captain Paralytic
Messages: 204
Registered: September 2010
Karma: 0
Senior Member
On Jan 27, 6:20 pm, Andrew <Andrew_mem...@newsguy.com> wrote:
> In article <ihqvv501...@drn.newsguy.com>, Andrew says...
>
>
>
>> Here's an interesting item I could use some help with. Let's say I have a row of
>> boxes made from <ul><li> tags, named "A", "B", "C". When a visitor clicks on
>> "A", a list of names and other information appear below that row. How can I
>> direct the code to select the proper array?
>> I know about nested arrays. Will I need a nest for each <li> block or what?
>
> Well, I was able to find a script that actually creates the basic menu as I
> want.
>
> http://www.phpeasycode.com/sitemenu/
>
> So now with some tweaking I can create the <li> driven menu system as I wanted.
>
> Who the hell is this richard chap you guys seem to think I am? You guys seem to
> think anyone who asks a simple question must be this idiot. I can assure you, I
> am not him.
Why he's the person who in the third post in this thread posted:
"Ok so heres the code:
<ul>
<li> Au</li>
<li>Fook</li>
<li>Yew</li>
</ul>"

So that would be you then!
Re: passing variable to a nested array [message #172065 is a reply to message #172038] Sat, 29 January 2011 06:14 Go to previous messageGo to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
On Thu, 27 Jan 2011 20:15:36 -0800, Evan Platt wrote:

> On 27 Jan 2011 10:20:16 -0800, Andrew <Andrew_member(at)newsguy(dot)com>
> wrote:
>
>> Who the hell is this richard chap you guys seem to think I am?
>
> Clue #1: People with an IQ above 20 capitalize proper names.
>
> Bullshit Bullis does not. He is not Richard, he is richard.
>
> Anyone other than bullis would say "Who is this Richard chap".
>
>> You guys seem to think anyone who asks a simple question must be this idiot.
>
> No, just an idiot who posts through newsguy.

In usenet, "richard" and "Richard" can refer to two different people.
So he was referring to the nick, not the proper noun as would be the case
in the real world.

As you have seen in 24hshd, "Richard" has posted and "richard" replied to
that post. Checking the headers would clearly show they are not the same
person.
Re: passing variable to a nested array [message #172066 is a reply to message #172065] Sat, 29 January 2011 06:49 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Fri, 28 Jan 2011 23:14:26 -0700, richard <member(at)newsguy(dot)com>
wrote:

> In usenet, "richard" and "Richard" can refer to two different people.
> So he was referring to the nick, not the proper noun as would be the case
> in the real world.
>
> As you have seen in 24hshd, "Richard" has posted and "richard" replied to
> that post. Checking the headers would clearly show they are not the same
> person.

We know. We've suggested "Richard" change his nick so as to not be
confused with richard bullis, the ignorant idiot.

It's OK bullis, we all know the Andrew is you.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: passing variable to a nested array [message #172067 is a reply to message #172066] Sat, 29 January 2011 07:16 Go to previous messageGo to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
On Fri, 28 Jan 2011 22:49:16 -0800, Evan Platt wrote:

> On Fri, 28 Jan 2011 23:14:26 -0700, richard <member(at)newsguy(dot)com>
> wrote:
>
>> In usenet, "richard" and "Richard" can refer to two different people.
>> So he was referring to the nick, not the proper noun as would be the case
>> in the real world.
>>
>> As you have seen in 24hshd, "Richard" has posted and "richard" replied to
>> that post. Checking the headers would clearly show they are not the same
>> person.
>
> We know. We've suggested "Richard" change his nick so as to not be
> confused with richard bullis, the ignorant idiot.
>
> It's OK bullis, we all know the Andrew is you.

yeah right. you're just pissed off because you can't find where I live.
You shouldn't be such an asshole when it's only to damned easy to find your
home address.
Re: passing variable to a nested array [message #172072 is a reply to message #172067] Sat, 29 January 2011 14:24 Go to previous message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Sat, 29 Jan 2011 00:16:20 -0700, richard <member(at)newsguy(dot)com>
wrote:

> yeah right. you're just pissed off because you can't find where I live.

I know your PO box, I know your brothers facebook page, I know your
brothers' wife's facebook page.

You don't 'live' anywhere. You drive an RV and move from motel to
motel because you have no friends.

> You shouldn't be such an asshole when it's only to damned easy to find your
> home address.

Try it bullis, try it.

With the threats that you've made that have been documented by the
police, you set foot on my property and you WILL be arrested.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Best strategy for creating an application scoped variable?
Next Topic: Converting Perl to PHP, testing CLI with $_POST (newbie)
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 20 12:29:41 GMT 2024

Total time taken to generate the page: 0.03278 seconds