FUSK!

In PHP...how you do you have a variable, array variable?

Like I have an array called $line_1 all the way through $line_192

And so I want to have a while statement where I've got like:

$i = 1
$pos = 5

And then do it like $line_$i[$pos]

Cept it doesn't work. Neither does $line_[$i][$pos] or
$line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
and variations I've tried.

In Actionscript everything has a kind of address and I can do it like:

'line_'+i+'[pos]'

or

line_[i][pos]

But it won't work in PHP. Maybe it's just not possible in PHP? Or
maybe there's another way of creating like an array inside an array?

*confused*

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Di, 09 Januar 2007 10:37 ] [ ID #1589847 ]

Re: FUSK!

Onideus Mad Hatter wrote:
> In PHP...how you do you have a variable, array variable?
>
> Like I have an array called $line_1 all the way through $line_192
>
> And so I want to have a while statement where I've got like:
>
> $i = 1
> $pos = 5
>
> And then do it like $line_$i[$pos]
>
> Cept it doesn't work. Neither does $line_[$i][$pos]

For that to work, you had to had made a multidimensional array, which had most
likely been the easiest for you.

or
> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
> and variations I've tried.

All those are really meaningless tries, you are still trying to add together
the variable $line_, $i and $pos.

This is how you have to do it, you save the variable name you want to use into
a string and from there use it, not completely sure which will be the right
"syntax", but you can try.

--- first ---
$variabletouse="line_$i";
echo $$variabletouse[$pos];
--- eof ---

--- second ---
$variabletouse="line_$i[$pos]";
echo $$variabletouse;
--- eof ---

Notice the double $ in front of the variable, this makes PHP to use the string
as the variable name.


--

//Aho
Shion [ Di, 09 Januar 2007 11:18 ] [ ID #1589848 ]

Re: FUSK!

Message-ID: <dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com> from Onideus
Mad Hatter contained the following:

>In PHP...how you do you have a variable, array variable?

Funnily enough, I was doing exactly the same thing yesterday. or
rather, finding out you can't do it. As JO Aho points out, the way to
go is multidimensional arrays.

--
Geoff Berrow 0110001001101100010000000110
001101101011011001000110111101100111001011
100110001101101111001011100111010101101011
Geoff Berrow [ Di, 09 Januar 2007 11:34 ] [ ID #1589850 ]

Re: FUSK!

Geoff Berrow wrote:
> Message-ID: <dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com> from Onideus
> Mad Hatter contained the following:
>
>> In PHP...how you do you have a variable, array variable?
>
> Funnily enough, I was doing exactly the same thing yesterday. or
> rather, finding out you can't do it. As JO Aho points out, the way to
> go is multidimensional arrays.

It's possible to do it, but multidimensional arrays are easier, had to
experiment a bit myself, but here is an example that works:

<?PHP
/* Three arrays */
$var_1=array("one","two","three");
$var_2=array("four","five","six");
$var_3=array("seven","eight","nine");
/* here we tell we want array var_2 */
$i=2;
/* here we tell we want the third cell (first=0) */
$pos=2;

/* here we create the variable name */
$variabletouse="var_$i";
/* here we copy the contents of the variable to a temp variable */
$temp= $$variabletouse;
/* here we can pick out the value */
echo $temp[$pos]; //should give six
?>


while in a multidimensional it had been done with

<?PHP
/* One array */
$array=array(
array("one","two","three"),
array("four","five","six"),
array("seven","eight","nine")
);
/* here we tell we want array var_2 */
$i=2;
/* here we tell we want the third cell (first=0) */
$pos=2;

/* here we pick the value */
echo $array[$i][$pos];
?>
--

//Aho
Shion [ Di, 09 Januar 2007 13:47 ] [ ID #1589854 ]

Re: FUSK!

"Geoff Berrow" <blthecat [at] ckdog.co.uk> wrote in message
news:cqr6q25oh5r97l8j22a5upffcqh7p2vg4q [at] 4ax.com...
> Message-ID: <dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com> from Onideus
> Mad Hatter contained the following:
>
> >In PHP...how you do you have a variable, array variable?
>
> Funnily enough, I was doing exactly the same thing yesterday. or
> rather, finding out you can't do it. As JO Aho points out, the way to
> go is multidimensional arrays.
>

You can create and use variable array variables easily like so:


${"line_$i"}[$pos] = "some text";

and to make multi-dimensional, just:

${"line_$i"}[$pos] = array('one' => array(), 'two' => array());

and more:

${"line_$i"}[$pos]['one'][0] = array();

etc.

Norm
--
FREE Avatar hosting at www.easyavatar.com
Norman Peelman [ Mi, 10 Januar 2007 02:05 ] [ ID #1591135 ]

Re: FUSK!

J.O. Aho wrote:
> /* here we create the variable name */
> $variabletouse="var_$i";
> /* here we copy the contents of the variable to a temp variable */
> $temp= $$variabletouse;
> /* here we can pick out the value */
> echo $temp[$pos]; //should give six
>>


Well, extremely shorter:
echo ${'var_'.$i}[$pos];

Still, arrays are better offcourse.
--
Rik Wasmus
Rik [ Mi, 10 Januar 2007 02:08 ] [ ID #1591136 ]

Re: FUSK!

"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
> In PHP...how you do you have a variable, array variable?
>
> Like I have an array called $line_1 all the way through $line_192
>
> And so I want to have a while statement where I've got like:
>
> $i = 1
> $pos = 5
>
> And then do it like $line_$i[$pos]
>
> Cept it doesn't work. Neither does $line_[$i][$pos] or
> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
> and variations I've tried.
>
> In Actionscript everything has a kind of address and I can do it like:
>
> 'line_'+i+'[pos]'
>
> or
>
> line_[i][pos]
>
> But it won't work in PHP. Maybe it's just not possible in PHP? Or
> maybe there's another way of creating like an array inside an array?
>
> *confused*
>
> --
>
> Onideus Mad Hatter
> mhm ¹ x ¹
> http://www.backwater-productions.net
> http://www.backwater-productions.net/hatter-blog
>



You can create and use variable array variables easily like so:


${"line_$i"}[$pos] = "some text";

and to make multi-dimensional, just:

${"line_$i"}[$pos] = array('one' => array(), 'two' => array());

and more:

${"line_$i"}[$pos]['one'][0] = array();

etc.

Norm
--
FREE Avatar hosting at www.easyavatar.com
Norman Peelman [ Mi, 10 Januar 2007 02:06 ] [ ID #1591137 ]

Re: FUSK!

Onideus Mad Hatter wrote:
> In PHP...how you do you have a variable, array variable?
>
> Like I have an array called $line_1 all the way through $line_192
>
> And so I want to have a while statement where I've got like:
>
> $i = 1
> $pos = 5
>
> And then do it like $line_$i[$pos]
>
> Cept it doesn't work. Neither does $line_[$i][$pos] or
> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
> and variations I've tried.
>
> In Actionscript everything has a kind of address and I can do it like:
>
> 'line_'+i+'[pos]'
>
> or
>
> line_[i][pos]
>
> But it won't work in PHP. Maybe it's just not possible in PHP? Or
> maybe there's another way of creating like an array inside an array?
>
> *confused*
>
> --
>
> Onideus Mad Hatter
> mhm ¹ x ¹
> http://www.backwater-productions.net
> http://www.backwater-productions.net/hatter-blog
>
>


You can create and use variable array variables easily like so:


${"line_$i"}[$pos] = "some text";

and to make multi-dimensional, just:

${"line_$i"}[$pos] = array('one' => array(), 'two' => array());

and more:

${"line_$i"}[$pos]['one'][0] = array();

etc.

Norm
--
FREE Avatar hosting at www.easyavatar.com
Norman Peelman [ Mi, 10 Januar 2007 02:12 ] [ ID #1591139 ]

Re: FUSK!

On Tue, 9 Jan 2007 20:06:46 -0500, "Norman Peelman"
<npeelman [at] cfl.rr.com> wrote:

>"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
>news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
>> In PHP...how you do you have a variable, array variable?
>>
>> Like I have an array called $line_1 all the way through $line_192
>>
>> And so I want to have a while statement where I've got like:
>>
>> $i = 1
>> $pos = 5
>>
>> And then do it like $line_$i[$pos]
>>
>> Cept it doesn't work. Neither does $line_[$i][$pos] or
>> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
>> and variations I've tried.
>>
>> In Actionscript everything has a kind of address and I can do it like:
>>
>> 'line_'+i+'[pos]'
>>
>> or
>>
>> line_[i][pos]
>>
>> But it won't work in PHP. Maybe it's just not possible in PHP? Or
>> maybe there's another way of creating like an array inside an array?
>>
>> *confused*
>>
>> --
>>
>> Onideus Mad Hatter
>> mhm ¹ x ¹
>> http://www.backwater-productions.net
>> http://www.backwater-productions.net/hatter-blog
>>
>
>
>
>You can create and use variable array variables easily like so:
>
>
>${"line_$i"}[$pos] = "some text";
>
>and to make multi-dimensional, just:
>
>${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>
>and more:
>
>${"line_$i"}[$pos]['one'][0] = array();
>
>etc.
>
>Norm

Ahhh, cool deal. Thanks!

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Mi, 10 Januar 2007 05:17 ] [ ID #1591143 ]

Re: FUSK!

On Tue, 9 Jan 2007 20:06:46 -0500, "Norman Peelman"
<npeelman [at] cfl.rr.com> wrote:

>You can create and use variable array variables easily like so:
>
>
>${"line_$i"}[$pos] = "some text";
>
>and to make multi-dimensional, just:
>
>${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>
>and more:
>
>${"line_$i"}[$pos]['one'][0] = array();
>
>etc.
>
>Norm

Hrmmm, dunno work. Is that only with the newest version of PHP or
something? Here's the exact code snippet if it helps:

:if (isset($HTTP_POST_VARS['image_line_1']))
:{
: header("Content-type: image/png");
: $im = imagecreatetruecolor(128, 192);
: $b = 1;
:
: while($b <= 192)
: {
: $k = 0;
: ${"line_$b"} = explode("|", $_POST['${"image_line_$b"}']);
: while($k <= 128)
: {
: $rgb = explode(",", ${"line_$b"}[$k]);
: $color = imagecolorallocate($im, $rgb[0], $rgb[1], $rgb[2]);
: imagesetpixel($im,$k+1,$b,$color);
: $k++;
: }
: $b++
: }
:
: imagePNG($im);
: imagedestroy($im);
:}

I tried to you the method you sent me via email and it says:
Parse error: syntax error, unexpected '}' on line 25
(in my example on line 19)

*shrugs*

I'm running with ver 4.4.4 of PHP if that makes a difference. I've
thought about upgrading but I didn't really wanna have to run through
all my existing PHP st00f and make sure it all still works (cause
apparently the whole concept of "backwards compatibility" is too just
too fucking complicated for The PHP Group to grasp).

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Mi, 10 Januar 2007 06:06 ] [ ID #1591144 ]

Re: FUSK!

On Tue, 09 Jan 2007 21:06:37 -0800, Onideus Mad Hatter
<usenet [at] backwater-productions.net> wrote:

>On Tue, 9 Jan 2007 20:06:46 -0500, "Norman Peelman"
><npeelman [at] cfl.rr.com> wrote:
>
>>You can create and use variable array variables easily like so:
>>
>>
>>${"line_$i"}[$pos] = "some text";
>>
>>and to make multi-dimensional, just:
>>
>>${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>>
>>and more:
>>
>>${"line_$i"}[$pos]['one'][0] = array();
>>
>>etc.
>>
>>Norm
>
>Hrmmm, dunno work. Is that only with the newest version of PHP or
>something? Here's the exact code snippet if it helps:
>
>:if (isset($HTTP_POST_VARS['image_line_1']))
>:{
>: header("Content-type: image/png");
>: $im = imagecreatetruecolor(128, 192);
>: $b = 1;
>:
>: while($b <= 192)
>: {
>: $k = 0;
>: ${"line_$b"} = explode("|", $_POST['${"image_line_$b"}']);
>: while($k <= 128)
>: {
>: $rgb = explode(",", ${"line_$b"}[$k]);
>: $color = imagecolorallocate($im, $rgb[0], $rgb[1], $rgb[2]);
>: imagesetpixel($im,$k+1,$b,$color);
>: $k++;
>: }
>: $b++
>: }
>:
>: imagePNG($im);
>: imagedestroy($im);
>:}
>
>I tried to you the method you sent me via email and it says:
>Parse error: syntax error, unexpected '}' on line 25
>(in my example on line 19)
>
>*shrugs*
>
>I'm running with ver 4.4.4 of PHP if that makes a difference. I've
>thought about upgrading but I didn't really wanna have to run through
>all my existing PHP st00f and make sure it all still works (cause
>apparently the whole concept of "backwards compatibility" is too just
>too fucking complicated for The PHP Group to grasp).

Er, never mind, it works. Forgot a freakin semicolon after the $b++

*sigh*

I prefer graphic design to programming any day.

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Mi, 10 Januar 2007 07:27 ] [ ID #1591146 ]

Re: FUSK!

"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
> In PHP...how you do you have a variable, array variable?
>
> Like I have an array called $line_1 all the way through $line_192
>
> And so I want to have a while statement where I've got like:
>
> $i = 1
> $pos = 5
>
> And then do it like $line_$i[$pos]
>
> Cept it doesn't work. Neither does $line_[$i][$pos] or
> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
> and variations I've tried.
>
> In Actionscript everything has a kind of address and I can do it like:
>
> 'line_'+i+'[pos]'
>
> or
>
> line_[i][pos]
>
> But it won't work in PHP. Maybe it's just not possible in PHP? Or
> maybe there's another way of creating like an array inside an array?
>
> *confused*

your such a dip shit .... blubber head.
get a clue!
You can create and use variable array variables if you weren't so dumn:
${"line_$i"}[$pos] = "some text";

to make multi-dimensional...
${"line_$i"}[$pos] = array('one' => array(), 'two' => array());

and another way.....

${"line_$i"}[$pos]['one'][0] = array();

--
BuZZard
buzzard [ Do, 11 Januar 2007 00:33 ] [ ID #1591161 ]

Re: FUSK!

"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
news:6p19q215v0cscqtfd2vhnq95e6om6oe4d6 [at] 4ax.com...
> On Tue, 09 Jan 2007 21:06:37 -0800, Onideus Mad Hatter
> <usenet [at] backwater-productions.net> wrote:
>
> >On Tue, 9 Jan 2007 20:06:46 -0500, "Norman Peelman"
> ><npeelman [at] cfl.rr.com> wrote:
> >
> >>You can create and use variable array variables easily like so:
> >>
> >>
> >>${"line_$i"}[$pos] = "some text";
> >>
> >>and to make multi-dimensional, just:
> >>
> >>${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
> >>
> >>and more:
> >>
> >>${"line_$i"}[$pos]['one'][0] = array();
> >>
> >>etc.
> >>
> >>Norm
> >
> >Hrmmm, dunno work. Is that only with the newest version of PHP or
> >something? Here's the exact code snippet if it helps:
> >
> >:if (isset($HTTP_POST_VARS['image_line_1']))
> >:{
> >: header("Content-type: image/png");
> >: $im = imagecreatetruecolor(128, 192);
> >: $b = 1;
> >:
> >: while($b <= 192)
> >: {
> >: $k = 0;
> >: ${"line_$b"} = explode("|", $_POST['${"image_line_$b"}']);
> >: while($k <= 128)
> >: {
> >: $rgb = explode(",", ${"line_$b"}[$k]);
> >: $color = imagecolorallocate($im, $rgb[0], $rgb[1], $rgb[2]);
> >: imagesetpixel($im,$k+1,$b,$color);
> >: $k++;
> >: }
> >: $b++
> >: }
> >:
> >: imagePNG($im);
> >: imagedestroy($im);
> >:}
> >
> >I tried to you the method you sent me via email and it says:
> >Parse error: syntax error, unexpected '}' on line 25
> >(in my example on line 19)
> >
> >*shrugs*
> >
> >I'm running with ver 4.4.4 of PHP if that makes a difference. I've
> >thought about upgrading but I didn't really wanna have to run through
> >all my existing PHP st00f and make sure it all still works (cause
> >apparently the whole concept of "backwards compatibility" is too just
> >too fucking complicated for The PHP Group to grasp).
>
> Er, never mind, it works. Forgot a freakin semicolon after the $b++
>
> *sigh*
>
> I prefer graphic design to programming any day.

"Paint" doesnt really qualify you as a graphic designer dipshit.
buzzard [ Do, 11 Januar 2007 00:35 ] [ ID #1591162 ]

Re: FUSK!

BuZZard wrote:
> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
> news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
>> In PHP...how you do you have a variable, array variable?
>>
>> Like I have an array called $line_1 all the way through $line_192
>>
>> And so I want to have a while statement where I've got like:
>>
>> $i = 1
>> $pos = 5
>>
>> And then do it like $line_$i[$pos]
>>
>> Cept it doesn't work. Neither does $line_[$i][$pos] or
>> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
>> and variations I've tried.
>>
>> In Actionscript everything has a kind of address and I can do it like:
>>
>> 'line_'+i+'[pos]'
>>
>> or
>>
>> line_[i][pos]
>>
>> But it won't work in PHP. Maybe it's just not possible in PHP? Or
>> maybe there's another way of creating like an array inside an array?
>>
>> *confused*
>
> your such a dip shit .... blubber head.
> get a clue!
> You can create and use variable array variables if you weren't so dumn:
> ${"line_$i"}[$pos] = "some text";
>
> to make multi-dimensional...
> ${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>
> and another way.....
>
> ${"line_$i"}[$pos]['one'][0] = array();
>
> --
> BuZZard
>
>
>

don't bash the students.
bad form.

unless it was omh. I'm always for bashing omh.

but he's so full of himself he probably never asks anyone
for help. scared of getting bashed.

--
Stop WW3!!

"Remember: Only YOU can prevent Forest Fires!"
....Smokey the Bear
slowley [ Do, 11 Januar 2007 02:54 ] [ ID #1592380 ]

Re: FUSK!

On Wed, 10 Jan 2007 23:33:39 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
wrote:

>
>"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
>news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
>> In PHP...how you do you have a variable, array variable?
>>
>> Like I have an array called $line_1 all the way through $line_192
>>
>> And so I want to have a while statement where I've got like:
>>
>> $i = 1
>> $pos = 5
>>
>> And then do it like $line_$i[$pos]
>>
>> Cept it doesn't work. Neither does $line_[$i][$pos] or
>> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
>> and variations I've tried.
>>
>> In Actionscript everything has a kind of address and I can do it like:
>>
>> 'line_'+i+'[pos]'
>>
>> or
>>
>> line_[i][pos]
>>
>> But it won't work in PHP. Maybe it's just not possible in PHP? Or
>> maybe there's another way of creating like an array inside an array?
>>
>> *confused*
>
>your such a dip shit .... blubber head.
>get a clue!
>You can create and use variable array variables if you weren't so dumn:
>${"line_$i"}[$pos] = "some text";
>
>to make multi-dimensional...
>${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>
>and another way.....
>
>${"line_$i"}[$pos]['one'][0] = array();

Way to copy what someone else already posted and pretend that you came
up with it, Dipshit.

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 03:32 ] [ ID #1592381 ]

Re: FUSK!

On Wed, 10 Jan 2007 23:35:11 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
wrote:

>> Er, never mind, it works. Forgot a freakin semicolon after the $b++
>>
>> *sigh*
>>
>> I prefer graphic design to programming any day.

>"Paint" doesnt really qualify you as a graphic designer dipshit.

Thanks for the "tip", Dipshit. I guess that's why you don't qualify
as a graphic designer, huh? Of course, even if you WEREN'T using
Paint you STILL wouldn't be a graphic designer, only a tripped out
dipshit getting high on welfare, smoking your worthless life away and
trying to imagine yourself as being even slightly less worthless than
you are.

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 03:39 ] [ ID #1592382 ]

Re: FUSK!

On Thu, 11 Jan 2007 01:54:35 GMT, "Mowe Z. Slowley"
<slowley [at] TreeEnt.org> wrote:

>don't bash the students.

Buzzard isn't a teacher, Dumbass. He COPIED and PLAGIARIZED what
SOMEONE ELSE posted and then tried to take credit for it...in a rather
blatantly stupid way. Let's see, how many websites does Buzzard
have...hrmmm...oh yeah, NONE! LOL

>bad form.
>
>unless it was omh. I'm always for bashing omh.

Obsesso.

>but he's so full of himself he probably never asks anyone
>for help. scared of getting bashed.

I don't really ever ask for help so much as I ask for tips or more
often than not precise terminology. Since I'm not "book learned" I
have many of my own sayings for particular things, however if I'm
interested in looking up information on how to do something I'm often
stuck because I don't know what it's referred to book wise.

I also often look for collaboration rather than step-wise instruction.
Not only does it help me but it also helps those who are collaborating
with me about a particular design concept or code form. This however
is reserved only for people WHO KNOW THE FIELD. In BuZZ's case he
doesn't know fuck all what he didn't slurp up from someone else's post
or some halfass Wiki sputter. In fact BuZZ knows *SO LITTLE* about
programming that fuckin Drippy looks like an expert compared to his
ability and experience.

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 03:51 ] [ ID #1592383 ]

Re: FUSK!

"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
news:1r8bq2pf09saap3iemkoj0foaa18pc3ceg [at] 4ax.com...
> On Thu, 11 Jan 2007 01:54:35 GMT, "Mowe Z. Slowley"
> <slowley [at] TreeEnt.org> wrote:
>
> >don't bash the students.
>
> Buzzard isn't a teacher, he is the master.

flabbery wont get you anywhere.. unless you use it to move from
room to room mr. blubber neck. LOL
buzzard [ Do, 11 Januar 2007 04:23 ] [ ID #1592384 ]

Re: FUSK!

"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
news:bd8bq2ta1bg7vlk085brief3i1gver1han [at] 4ax.com...
> On Wed, 10 Jan 2007 23:33:39 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
> wrote:
>
> >
> >"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
> >news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
> >> In PHP...how you do you have a variable, array variable?
> >>
> >> Like I have an array called $line_1 all the way through $line_192
> >>
> >> And so I want to have a while statement where I've got like:
> >>
> >> $i = 1
> >> $pos = 5
> >>
> >> And then do it like $line_$i[$pos]
> >>
> >> Cept it doesn't work. Neither does $line_[$i][$pos] or
> >> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
> >> and variations I've tried.
> >>
> >> In Actionscript everything has a kind of address and I can do it like:
> >>
> >> 'line_'+i+'[pos]'
> >>
> >> or
> >>
> >> line_[i][pos]
> >>
> >> But it won't work in PHP. Maybe it's just not possible in PHP? Or
> >> maybe there's another way of creating like an array inside an array?
> >>
> >> *confused*
> >
> >your such a dip shit .... blubber head.
> >get a clue!
> >You can create and use variable array variables if you weren't so dumn:
> >${"line_$i"}[$pos] = "some text";
> >
> >to make multi-dimensional...
> >${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
> >
> >and another way.....
> >
> >${"line_$i"}[$pos]['one'][0] = array();
>
> Way to copy what someone else already posted and pretend that you came
> up with it, Dipshit.

I didn't copy anything mr.braindead.. its my own words put into type to try
to help your dumn azz out... Maybe you should stick to dying your hair and
giving out makeup tips.
buzzard [ Do, 11 Januar 2007 04:25 ] [ ID #1592385 ]

Re: FUSK!

"Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
news:qe8bq291b465ns32ab3a1l2i9m9065abs1 [at] 4ax.com...
> On Wed, 10 Jan 2007 23:35:11 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
> wrote:
>
> >> Er, never mind, it works. Forgot a freakin semicolon after the $b++
> >>
> >> *sigh*
> >>
> >> I prefer graphic design to programming any day.
>
> >"Paint" doesnt really qualify you as a graphic designer dipshit.
>
> Thanks for the "tip", Dipshit. I guess that's why you don't qualify
> as a graphic designer, huh? Of course, even if you WEREN'T using
> Paint you STILL wouldn't be a graphic designer, only a tripped out
> dipshit getting high on welfare, smoking your worthless life away and
> trying to imagine yourself as being even slightly less worthless than
> you are.

are you building your ... PHP.. out of leggos? LOLOLOL
or armymen? or.. carebears? muahahahahhaha
buzzard [ Do, 11 Januar 2007 04:29 ] [ ID #1592386 ]

Re: FUSK!

Post removed (X-No-Archive: yes)
Notifier Deamon [ Do, 11 Januar 2007 04:28 ] [ ID #1592387 ]

Re: FUSK!

Post removed (X-No-Archive: yes)
Notifier Deamon [ Do, 11 Januar 2007 04:37 ] [ ID #1592388 ]

Re: FUSK!

"jitter" <jitf [at] 127.0.0.1> wrote in message
news:mxbouiwgc$fvqpdjhdzz [at] 127.0.0.1...
> In article <1r8bq2pf09saap3iemkoj0foaa18pc3ceg [at] 4ax.com>,
> usenet [at] backwater-productions.net says...
> > On Thu, 11 Jan 2007 01:54:35 GMT, "Mowe Z. Slowley"
> > <slowley [at] TreeEnt.org> wrote:
> >
> > >don't bash the students.
> >
> > Buzzard isn't a teacher, Dumbass. He COPIED and PLAGIARIZED what
> > SOMEONE ELSE posted and then tried to take credit for it...in a rather
> > blatantly stupid way. Let's see, how many websites does Buzzard
> > have...hrmmm...oh yeah, NONE! LOL
> >
> > >bad form.
> > >
> > >unless it was omh. I'm always for bashing omh.
> >
> > Obsesso.
> >
> > >but he's so full of himself he probably never asks anyone
> > >for help. scared of getting bashed.
> >
> > I don't really ever ask for help so much as I ask for tips or more
> > often than not precise terminology. Since I'm not "book learned" I
> > have many of my own sayings for particular things, however if I'm
> > interested in looking up information on how to do something I'm often
> > stuck because I don't know what it's referred to book wise.
> >
> > I also often look for collaboration rather than step-wise instruction.
> > Not only does it help me but it also helps those who are collaborating
> > with me about a particular design concept or code form. This however
> > is reserved only for people WHO KNOW THE FIELD. In BuZZ's case he
> > doesn't know fuck all what he didn't slurp up from someone else's post
> > or some halfass Wiki sputter. In fact BuZZ knows *SO LITTLE* about
> > programming that fuckin Drippy looks like an expert compared to his
> > ability and experience.
>
> Nice foamage, fatso. Why so angry? Your diaper leaking?

It might be.. but he gets like this when people pick on him..
he is sucking his thumb right now.. crying.. it will be a few before he gets
back to ya.
buzzard [ Do, 11 Januar 2007 04:40 ] [ ID #1592389 ]

Re: FUSK!

"jitter" <jitf [at] 127.0.0.1> wrote in message
news:xkdpqwgcixvhbj$poqmhhjsac [at] 127.0.0.1...
> In article <naiph.3573$AM4.475 [at] trnddc07>, buzzard [at] buzzardnest.us says...
> >
> > "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
> > news:qe8bq291b465ns32ab3a1l2i9m9065abs1 [at] 4ax.com...
> > > On Wed, 10 Jan 2007 23:35:11 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
> > > wrote:
> > >
> > > >> Er, never mind, it works. Forgot a freakin semicolon after the
$b++
> > > >>
> > > >> *sigh*
> > > >>
> > > >> I prefer graphic design to programming any day.
> > >
> > > >"Paint" doesnt really qualify you as a graphic designer dipshit.
> > >
> > > Thanks for the "tip", Dipshit. I guess that's why you don't qualify
> > > as a graphic designer, huh? Of course, even if you WEREN'T using
> > > Paint you STILL wouldn't be a graphic designer, only a tripped out
> > > dipshit getting high on welfare, smoking your worthless life away and
> > > trying to imagine yourself as being even slightly less worthless than
> > > you are.
> >
> > are you building your ... PHP.. out of leggos? LOLOLOL
> > or armymen? or.. carebears? muahahahahhaha
>
> Or turd sculptures?

I pretend to do poo/clay type sculptures.. however.. he actually
plays with leggos... and he is way past 13 years old physically..
just not mentally.. smart stuff has a hard time penatrating blubber.
buzzard [ Do, 11 Januar 2007 04:42 ] [ ID #1592390 ]

Re: FUSK!

Post removed (X-No-Archive: yes)
Notifier Deamon [ Do, 11 Januar 2007 04:48 ] [ ID #1592391 ]

Re: FUSK!

"jitter" <jitf [at] 127.0.0.1> wrote in message
news:mwoidsvhew$gpfkihjbcx [at] 127.0.0.1...
> In article <Wkiph.3578$AM4.3010 [at] trnddc07>, buzzard [at] buzzardnest.us
> says...
> >
> > "jitter" <jitf [at] 127.0.0.1> wrote in message
> > news:mxbouiwgc$fvqpdjhdzz [at] 127.0.0.1...
> > > In article <1r8bq2pf09saap3iemkoj0foaa18pc3ceg [at] 4ax.com>,
> > > usenet [at] backwater-productions.net says...
> > > > On Thu, 11 Jan 2007 01:54:35 GMT, "Mowe Z. Slowley"
> > > > <slowley [at] TreeEnt.org> wrote:
> > > >
> > > > >don't bash the students.
> > > >
> > > > Buzzard isn't a teacher, Dumbass. He COPIED and PLAGIARIZED what
> > > > SOMEONE ELSE posted and then tried to take credit for it...in a
rather
> > > > blatantly stupid way. Let's see, how many websites does Buzzard
> > > > have...hrmmm...oh yeah, NONE! LOL
> > > >
> > > > >bad form.
> > > > >
> > > > >unless it was omh. I'm always for bashing omh.
> > > >
> > > > Obsesso.
> > > >
> > > > >but he's so full of himself he probably never asks anyone
> > > > >for help. scared of getting bashed.
> > > >
> > > > I don't really ever ask for help so much as I ask for tips or more
> > > > often than not precise terminology. Since I'm not "book learned" I
> > > > have many of my own sayings for particular things, however if I'm
> > > > interested in looking up information on how to do something I'm
often
> > > > stuck because I don't know what it's referred to book wise.
> > > >
> > > > I also often look for collaboration rather than step-wise
instruction.
> > > > Not only does it help me but it also helps those who are
collaborating
> > > > with me about a particular design concept or code form. This
however
> > > > is reserved only for people WHO KNOW THE FIELD. In BuZZ's case he
> > > > doesn't know fuck all what he didn't slurp up from someone else's
post
> > > > or some halfass Wiki sputter. In fact BuZZ knows *SO LITTLE* about
> > > > programming that fuckin Drippy looks like an expert compared to his
> > > > ability and experience.
> > >
> > > Nice foamage, fatso. Why so angry? Your diaper leaking?
> >
> > It might be.. but he gets like this when people pick on him..
> > he is sucking his thumb right now.. crying.. it will be a few before he
gets
> > back to ya.
>
> He's trying to ignore me, because I've been teasing him for days (about
> diapers and fatness and whatnot) and he can't take it anymore.

He is being spanked.. he is doing his dirty deeds... his pussy moves..
including.... posting comments about the link.. calling
me fat... I declare him SPNAKED hard.. in one thread alone.
bwahahahahahahahaha diaper shit stain!
buzzard [ Do, 11 Januar 2007 04:52 ] [ ID #1592392 ]

Re: FUSK!

Post removed (X-No-Archive: yes)
Notifier Deamon [ Do, 11 Januar 2007 04:55 ] [ ID #1592393 ]

Re: FUSK!

"jitter" <jitf [at] 127.0.0.1> wrote in message
news:xowegjcxhqf$grebxckjhm [at] 127.0.0.1...
> In article <rmiph.3579$AM4.1745 [at] trnddc07>, buzzard [at] buzzardnest.us
> says...
> >
> > "jitter" <jitf [at] 127.0.0.1> wrote in message
> > news:xkdpqwgcixvhbj$poqmhhjsac [at] 127.0.0.1...
> > > In article <naiph.3573$AM4.475 [at] trnddc07>, buzzard [at] buzzardnest.us
says...
> > > >
> > > > "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in
message
> > > > news:qe8bq291b465ns32ab3a1l2i9m9065abs1 [at] 4ax.com...
> > > > > On Wed, 10 Jan 2007 23:35:11 GMT, "BuZZard"
<buzzard [at] buzzardnest.us>
> > > > > wrote:
> > > > >
> > > > > >> Er, never mind, it works. Forgot a freakin semicolon after the
> > $b++
> > > > > >>
> > > > > >> *sigh*
> > > > > >>
> > > > > >> I prefer graphic design to programming any day.
> > > > >
> > > > > >"Paint" doesnt really qualify you as a graphic designer dipshit.
> > > > >
> > > > > Thanks for the "tip", Dipshit. I guess that's why you don't
qualify
> > > > > as a graphic designer, huh? Of course, even if you WEREN'T using
> > > > > Paint you STILL wouldn't be a graphic designer, only a tripped out
> > > > > dipshit getting high on welfare, smoking your worthless life away
and
> > > > > trying to imagine yourself as being even slightly less worthless
than
> > > > > you are.
> > > >
> > > > are you building your ... PHP.. out of leggos? LOLOLOL
> > > > or armymen? or.. carebears? muahahahahhaha
> > >
> > > Or turd sculptures?
> >
> > I pretend to do poo/clay type sculptures.. however.. he actually
> > plays with leggos... and he is way past 13 years old physically..
> > just not mentally.. smart stuff has a hard time penatrating blubber.
>
> Yeah, I know about the leggo thing, but I regard him as the type of
> person who would mold little anime figurines out of his own poop.
> Secretly, of course.

LOLOLOL
buzzard [ Do, 11 Januar 2007 05:02 ] [ ID #1592394 ]

Re: FUSK!

BuZZard wrote:
> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
> news:bd8bq2ta1bg7vlk085brief3i1gver1han [at] 4ax.com...
>> On Wed, 10 Jan 2007 23:33:39 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
>> wrote:
>>
>>> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
>>> news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
>>>> In PHP...how you do you have a variable, array variable?
>>>>
>>>> Like I have an array called $line_1 all the way through $line_192
>>>>
>>>> And so I want to have a while statement where I've got like:
>>>>
>>>> $i = 1
>>>> $pos = 5
>>>>
>>>> And then do it like $line_$i[$pos]
>>>>
>>>> Cept it doesn't work. Neither does $line_[$i][$pos] or
>>>> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
>>>> and variations I've tried.
>>>>
>>>> In Actionscript everything has a kind of address and I can do it like:
>>>>
>>>> 'line_'+i+'[pos]'
>>>>
>>>> or
>>>>
>>>> line_[i][pos]
>>>>
>>>> But it won't work in PHP. Maybe it's just not possible in PHP? Or
>>>> maybe there's another way of creating like an array inside an array?
>>>>
>>>> *confused*
>>> your such a dip shit .... blubber head.
>>> get a clue!
>>> You can create and use variable array variables if you weren't so dumn:
>>> ${"line_$i"}[$pos] = "some text";
>>>
>>> to make multi-dimensional...
>>> ${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>>>
>>> and another way.....
>>>
>>> ${"line_$i"}[$pos]['one'][0] = array();
>> Way to copy what someone else already posted and pretend that you came
>> up with it, Dipshit.
>
> I didn't copy anything mr.braindead.. its my own words put into type to try
> to help your dumn azz out... Maybe you should stick to dying your hair and
> giving out makeup tips.
>
>

You tellem BuzZ

Was I right?, Or was I right?

wotta goofball.

I sorta picture a cross between
Pee Wee Herman and Boy George.

--
Stop WW3!!

"Remember: Only YOU can prevent Forest Fires!"
....Smokey the Bear
slowley [ Do, 11 Januar 2007 05:19 ] [ ID #1592395 ]

Re: FUSK!

"Mowe Z. Slowley" <slowley [at] TreeEnt.org> wrote in message
news:CViph.148526$hn.7561 [at] edtnps82...
> BuZZard wrote:
> > "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
> > news:bd8bq2ta1bg7vlk085brief3i1gver1han [at] 4ax.com...
> >> On Wed, 10 Jan 2007 23:33:39 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
> >> wrote:
> >>
> >>> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in
message
> >>> news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
> >>>> In PHP...how you do you have a variable, array variable?
> >>>>
> >>>> Like I have an array called $line_1 all the way through $line_192
> >>>>
> >>>> And so I want to have a while statement where I've got like:
> >>>>
> >>>> $i = 1
> >>>> $pos = 5
> >>>>
> >>>> And then do it like $line_$i[$pos]
> >>>>
> >>>> Cept it doesn't work. Neither does $line_[$i][$pos] or
> >>>> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
> >>>> and variations I've tried.
> >>>>
> >>>> In Actionscript everything has a kind of address and I can do it
like:
> >>>>
> >>>> 'line_'+i+'[pos]'
> >>>>
> >>>> or
> >>>>
> >>>> line_[i][pos]
> >>>>
> >>>> But it won't work in PHP. Maybe it's just not possible in PHP? Or
> >>>> maybe there's another way of creating like an array inside an array?
> >>>>
> >>>> *confused*
> >>> your such a dip shit .... blubber head.
> >>> get a clue!
> >>> You can create and use variable array variables if you weren't so
dumn:
> >>> ${"line_$i"}[$pos] = "some text";
> >>>
> >>> to make multi-dimensional...
> >>> ${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
> >>>
> >>> and another way.....
> >>>
> >>> ${"line_$i"}[$pos]['one'][0] = array();
> >> Way to copy what someone else already posted and pretend that you came
> >> up with it, Dipshit.
> >
> > I didn't copy anything mr.braindead.. its my own words put into type to
try
> > to help your dumn azz out... Maybe you should stick to dying your hair
and
> > giving out makeup tips.
> >
> >
>
> You tellem BuzZ
>
> Was I right?, Or was I right?
>
> wotta goofball.
>
> I sorta picture a cross between
> Pee Wee Herman and Boy George.

more like the fat kid nobody liked growing up.. the one that
was a dumn azZ...
buzzard [ Do, 11 Januar 2007 05:31 ] [ ID #1592396 ]

Re: FUSK!

On Thu, 11 Jan 2007 04:02:32 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
wrote:

>
>"jitter" <jitf [at] 127.0.0.1> wrote in message
>news:xowegjcxhqf$grebxckjhm [at] 127.0.0.1...
>> In article <rmiph.3579$AM4.1745 [at] trnddc07>, buzzard [at] buzzardnest.us
>> says...
>> >
>> > "jitter" <jitf [at] 127.0.0.1> wrote in message
>> > news:xkdpqwgcixvhbj$poqmhhjsac [at] 127.0.0.1...
>> > > In article <naiph.3573$AM4.475 [at] trnddc07>, buzzard [at] buzzardnest.us
>says...
>> > > >
>> > > > "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in
>message
>> > > > news:qe8bq291b465ns32ab3a1l2i9m9065abs1 [at] 4ax.com...
>> > > > > On Wed, 10 Jan 2007 23:35:11 GMT, "BuZZard"
><buzzard [at] buzzardnest.us>
>> > > > > wrote:
>> > > > >
>> > > > > >> Er, never mind, it works. Forgot a freakin semicolon after the
>> > $b++
>> > > > > >>
>> > > > > >> *sigh*
>> > > > > >>
>> > > > > >> I prefer graphic design to programming any day.
>> > > > >
>> > > > > >"Paint" doesnt really qualify you as a graphic designer dipshit.
>> > > > >
>> > > > > Thanks for the "tip", Dipshit. I guess that's why you don't
>qualify
>> > > > > as a graphic designer, huh? Of course, even if you WEREN'T using
>> > > > > Paint you STILL wouldn't be a graphic designer, only a tripped out
>> > > > > dipshit getting high on welfare, smoking your worthless life away
>and
>> > > > > trying to imagine yourself as being even slightly less worthless
>than
>> > > > > you are.
>> > > >
>> > > > are you building your ... PHP.. out of leggos? LOLOLOL
>> > > > or armymen? or.. carebears? muahahahahhaha
>> > >
>> > > Or turd sculptures?
>> >
>> > I pretend to do poo/clay type sculptures.. however.. he actually
>> > plays with leggos... and he is way past 13 years old physically..
>> > just not mentally.. smart stuff has a hard time penatrating blubber.
>>
>> Yeah, I know about the leggo thing, but I regard him as the type of
>> person who would mold little anime figurines out of his own poop.
>> Secretly, of course.
>
>LOLOLOL

Oh look, Bowtie found a friend! LOL

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 05:36 ] [ ID #1592397 ]

Re: FUSK!

On Thu, 11 Jan 2007 03:52:56 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
wrote:

>
>"jitter" <jitf [at] 127.0.0.1> wrote in message
>news:mwoidsvhew$gpfkihjbcx [at] 127.0.0.1...
>> In article <Wkiph.3578$AM4.3010 [at] trnddc07>, buzzard [at] buzzardnest.us
>> says...
>> >
>> > "jitter" <jitf [at] 127.0.0.1> wrote in message
>> > news:mxbouiwgc$fvqpdjhdzz [at] 127.0.0.1...
>> > > In article <1r8bq2pf09saap3iemkoj0foaa18pc3ceg [at] 4ax.com>,
>> > > usenet [at] backwater-productions.net says...
>> > > > On Thu, 11 Jan 2007 01:54:35 GMT, "Mowe Z. Slowley"
>> > > > <slowley [at] TreeEnt.org> wrote:
>> > > >
>> > > > >don't bash the students.
>> > > >
>> > > > Buzzard isn't a teacher, Dumbass. He COPIED and PLAGIARIZED what
>> > > > SOMEONE ELSE posted and then tried to take credit for it...in a
>rather
>> > > > blatantly stupid way. Let's see, how many websites does Buzzard
>> > > > have...hrmmm...oh yeah, NONE! LOL
>> > > >
>> > > > >bad form.
>> > > > >
>> > > > >unless it was omh. I'm always for bashing omh.
>> > > >
>> > > > Obsesso.
>> > > >
>> > > > >but he's so full of himself he probably never asks anyone
>> > > > >for help. scared of getting bashed.
>> > > >
>> > > > I don't really ever ask for help so much as I ask for tips or more
>> > > > often than not precise terminology. Since I'm not "book learned" I
>> > > > have many of my own sayings for particular things, however if I'm
>> > > > interested in looking up information on how to do something I'm
>often
>> > > > stuck because I don't know what it's referred to book wise.
>> > > >
>> > > > I also often look for collaboration rather than step-wise
>instruction.
>> > > > Not only does it help me but it also helps those who are
>collaborating
>> > > > with me about a particular design concept or code form. This
>however
>> > > > is reserved only for people WHO KNOW THE FIELD. In BuZZ's case he
>> > > > doesn't know fuck all what he didn't slurp up from someone else's
>post
>> > > > or some halfass Wiki sputter. In fact BuZZ knows *SO LITTLE* about
>> > > > programming that fuckin Drippy looks like an expert compared to his
>> > > > ability and experience.
>> > >
>> > > Nice foamage, fatso. Why so angry? Your diaper leaking?
>> >
>> > It might be.. but he gets like this when people pick on him..
>> > he is sucking his thumb right now.. crying.. it will be a few before he
>gets
>> > back to ya.
>>
>> He's trying to ignore me, because I've been teasing him for days (about
>> diapers and fatness and whatnot) and he can't take it anymore.
>
>He is being spanked.. he is doing his dirty deeds... his pussy moves..
>including.... posting comments about the link.. calling
>me fat... I declare him SPNAKED hard.. in one thread alone.
>bwahahahahahahahaha diaper shit stain!

You know what I love about you Buzzy...the nostalgia...
http://www.backwater-productions.net/_images/_Usenet/AHM_Ret ards.gif

Heh...only lAHMers post like that. ^_^

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 05:38 ] [ ID #1592398 ]

Re: FUSK!

On Thu, 11 Jan 2007 04:19:46 GMT, "Mowe Z. Slowley"
<slowley [at] TreeEnt.org> wrote:

>BuZZard wrote:
>> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
>> news:bd8bq2ta1bg7vlk085brief3i1gver1han [at] 4ax.com...
>>> On Wed, 10 Jan 2007 23:33:39 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
>>> wrote:
>>>
>>>> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
>>>> news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
>>>>> In PHP...how you do you have a variable, array variable?
>>>>>
>>>>> Like I have an array called $line_1 all the way through $line_192
>>>>>
>>>>> And so I want to have a while statement where I've got like:
>>>>>
>>>>> $i = 1
>>>>> $pos = 5
>>>>>
>>>>> And then do it like $line_$i[$pos]
>>>>>
>>>>> Cept it doesn't work. Neither does $line_[$i][$pos] or
>>>>> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
>>>>> and variations I've tried.
>>>>>
>>>>> In Actionscript everything has a kind of address and I can do it like:
>>>>>
>>>>> 'line_'+i+'[pos]'
>>>>>
>>>>> or
>>>>>
>>>>> line_[i][pos]
>>>>>
>>>>> But it won't work in PHP. Maybe it's just not possible in PHP? Or
>>>>> maybe there's another way of creating like an array inside an array?
>>>>>
>>>>> *confused*
>>>> your such a dip shit .... blubber head.
>>>> get a clue!
>>>> You can create and use variable array variables if you weren't so dumn:
>>>> ${"line_$i"}[$pos] = "some text";
>>>>
>>>> to make multi-dimensional...
>>>> ${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>>>>
>>>> and another way.....
>>>>
>>>> ${"line_$i"}[$pos]['one'][0] = array();
>>> Way to copy what someone else already posted and pretend that you came
>>> up with it, Dipshit.
>>
>> I didn't copy anything mr.braindead.. its my own words put into type to try
>> to help your dumn azz out... Maybe you should stick to dying your hair and
>> giving out makeup tips.
>>
>>
>
>You tellem BuzZ
>
>Was I right?, Or was I right?
>
>wotta goofball.
>
>I sorta picture a cross between
>Pee Wee Herman and Boy George.

So would you consider yourself to be more of Buzzy's personal
cheerleader or his online jock strap? Or does your "role" change
depending on whether lil Buzzy needs "support" or "slurpage"?

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 05:40 ] [ ID #1592399 ]

Re: FUSK!

BuZZard wrote:
> "Mowe Z. Slowley" <slowley [at] TreeEnt.org> wrote in message
> news:CViph.148526$hn.7561 [at] edtnps82...
>> BuZZard wrote:
>>> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
>>> news:bd8bq2ta1bg7vlk085brief3i1gver1han [at] 4ax.com...
>>>> On Wed, 10 Jan 2007 23:33:39 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
>>>> wrote:
>>>>
>>>>> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in
> message
>>>>> news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
>>>>>> In PHP...how you do you have a variable, array variable?
>>>>>>
>>>>>> Like I have an array called $line_1 all the way through $line_192
>>>>>>
>>>>>> And so I want to have a while statement where I've got like:
>>>>>>
>>>>>> $i = 1
>>>>>> $pos = 5
>>>>>>
>>>>>> And then do it like $line_$i[$pos]
>>>>>>
>>>>>> Cept it doesn't work. Neither does $line_[$i][$pos] or
>>>>>> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
>>>>>> and variations I've tried.
>>>>>>
>>>>>> In Actionscript everything has a kind of address and I can do it
> like:
>>>>>> 'line_'+i+'[pos]'
>>>>>>
>>>>>> or
>>>>>>
>>>>>> line_[i][pos]
>>>>>>
>>>>>> But it won't work in PHP. Maybe it's just not possible in PHP? Or
>>>>>> maybe there's another way of creating like an array inside an array?
>>>>>>
>>>>>> *confused*
>>>>> your such a dip shit .... blubber head.
>>>>> get a clue!
>>>>> You can create and use variable array variables if you weren't so
> dumn:
>>>>> ${"line_$i"}[$pos] = "some text";
>>>>>
>>>>> to make multi-dimensional...
>>>>> ${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>>>>>
>>>>> and another way.....
>>>>>
>>>>> ${"line_$i"}[$pos]['one'][0] = array();
>>>> Way to copy what someone else already posted and pretend that you came
>>>> up with it, Dipshit.
>>> I didn't copy anything mr.braindead.. its my own words put into type to
> try
>>> to help your dumn azz out... Maybe you should stick to dying your hair
> and
>>> giving out makeup tips.
>>>
>>>
>> You tellem BuzZ
>>
>> Was I right?, Or was I right?
>>
>> wotta goofball.
>>
>> I sorta picture a cross between
>> Pee Wee Herman and Boy George.
>
> more like the fat kid nobody liked growing up.. the one that
> was a dumn azZ...
>
>

FAT pee wee herman?

that's obscene.

--
Stop WW3!!

"Remember: Only YOU can prevent Forest Fires!"
....Smokey the Bear
slowley [ Do, 11 Januar 2007 05:42 ] [ ID #1592400 ]

Re: FUSK!

Post removed (X-No-Archive: yes)
Notifier Deamon [ Do, 11 Januar 2007 05:58 ] [ ID #1592401 ]

Re: FUSK!

Post removed (X-No-Archive: yes)
Notifier Deamon [ Do, 11 Januar 2007 06:00 ] [ ID #1592402 ]

Re: FUSK!

On Thu, 11 Jan 2007 03:23:41 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
wrote:

>flabbery wont get you anywhere.. unless you use it to move from
>room to room mr. blubber neck. LOL

What was that, Fatty?

http://www.backwater-productions.net/_images/_Usenet/Fat_Buz zy.png

You're so fucking fat I bet you have one of those electric power
scooters to haul your morbidly obese FAT around.

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 06:14 ] [ ID #1592404 ]

Re: FUSK!

On Thu, 11 Jan 2007 04:42:46 GMT, "Mowe Z. Slowley"
<slowley [at] TreeEnt.org> wrote:

>BuZZard wrote:
>> "Mowe Z. Slowley" <slowley [at] TreeEnt.org> wrote in message
>> news:CViph.148526$hn.7561 [at] edtnps82...
>>> BuZZard wrote:
>>>> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in message
>>>> news:bd8bq2ta1bg7vlk085brief3i1gver1han [at] 4ax.com...
>>>>> On Wed, 10 Jan 2007 23:33:39 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
>>>>> wrote:
>>>>>
>>>>>> "Onideus Mad Hatter" <usenet [at] backwater-productions.net> wrote in
>> message
>>>>>> news:dfn6q25mhhkts44htptacnu5rmkbcnrq3p [at] 4ax.com...
>>>>>>> In PHP...how you do you have a variable, array variable?
>>>>>>>
>>>>>>> Like I have an array called $line_1 all the way through $line_192
>>>>>>>
>>>>>>> And so I want to have a while statement where I've got like:
>>>>>>>
>>>>>>> $i = 1
>>>>>>> $pos = 5
>>>>>>>
>>>>>>> And then do it like $line_$i[$pos]
>>>>>>>
>>>>>>> Cept it doesn't work. Neither does $line_[$i][$pos] or
>>>>>>> $line_($i)[$pos] or $line_'$i[$pos]' or any of the other combinations
>>>>>>> and variations I've tried.
>>>>>>>
>>>>>>> In Actionscript everything has a kind of address and I can do it
>> like:
>>>>>>> 'line_'+i+'[pos]'
>>>>>>>
>>>>>>> or
>>>>>>>
>>>>>>> line_[i][pos]
>>>>>>>
>>>>>>> But it won't work in PHP. Maybe it's just not possible in PHP? Or
>>>>>>> maybe there's another way of creating like an array inside an array?
>>>>>>>
>>>>>>> *confused*
>>>>>> your such a dip shit .... blubber head.
>>>>>> get a clue!
>>>>>> You can create and use variable array variables if you weren't so
>> dumn:
>>>>>> ${"line_$i"}[$pos] = "some text";
>>>>>>
>>>>>> to make multi-dimensional...
>>>>>> ${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
>>>>>>
>>>>>> and another way.....
>>>>>>
>>>>>> ${"line_$i"}[$pos]['one'][0] = array();
>>>>> Way to copy what someone else already posted and pretend that you came
>>>>> up with it, Dipshit.
>>>> I didn't copy anything mr.braindead.. its my own words put into type to
>> try
>>>> to help your dumn azz out... Maybe you should stick to dying your hair
>> and
>>>> giving out makeup tips.
>>>>
>>>>
>>> You tellem BuzZ
>>>
>>> Was I right?, Or was I right?
>>>
>>> wotta goofball.
>>>
>>> I sorta picture a cross between
>>> Pee Wee Herman and Boy George.
>>
>> more like the fat kid nobody liked growing up.. the one that
>> was a dumn azZ...
>>
>>
>
>FAT pee wee herman?
>
>that's obscene.

I found a FAT Pee Wee Herman right here:
http://www.backwater-productions.net/_images/_Usenet/Fat_Buz zy.png

....yeah, it is pretty obscene now that I think about it.

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 06:16 ] [ ID #1592405 ]

Buzzard Plagiarizes Norman Peelman's Code!

On Thu, 11 Jan 2007 03:25:44 GMT, "BuZZard" <buzzard [at] buzzardnest.us>
wrote:

>> Way to copy what someone else already posted and pretend that you came
>> up with it, Dipshit.

>I didn't copy anything mr.braindead.. its my own words put into type to try
>to help your dumn azz out... Maybe you should stick to dying your hair and
>giving out makeup tips.

Norman Peelman posted:
:You can create and use variable array variables easily like so:
:${"line_$i"}[$pos] = "some text";
:
:and to make multi-dimensional, just:
:${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
:
:and more:
:${"line_$i"}[$pos]['one'][0] = array();

You posted:
:You can create and use variable array variables if you weren't so dumn:
:${"line_$i"}[$pos] = "some text";
:
:to make multi-dimensional...
:${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
:
:and another way.....
:${"line_$i"}[$pos]['one'][0] = array();

The code portions top to bottom:
:${"line_$i"}[$pos] = "some text";
:${"line_$i"}[$pos] = "some text";

:${"line_$i"}[$pos] = array('one' => array(), 'two' => array());
:${"line_$i"}[$pos] = array('one' => array(), 'two' => array());

:${"line_$i"}[$pos]['one'][0] = array();
:${"line_$i"}[$pos]['one'][0] = array();

Tell us again how that's NOT plagiarizing Norman's code, you fucking
retard. Fuck all man, how Jesus killing tripped out do ya gotta get
before you BLATANTLY plagiarize someone and then turn right around and
try and deny it like everyone can't see the original postings PROVING
you plagiarized his code.

Oh and Buzz, yer STILL FAT:
http://www.backwater-productions.net/_images/_Usenet/Fat_Buz zy.png

--

Onideus Mad Hatter
mhm ¹ x ¹
http://www.backwater-productions.net
http://www.backwater-productions.net/hatter-blog


Hatter Quotes
-------------
"You're only one of the best if you're striving to become one of the
best."

"I didn't make reality, Sunshine, I just verbally bitch slapped you
with it."

"I'm not a professional, I'm an artist."

"Your Usenet blinders are my best friend."

"Usenet Filters - Learn to shut yourself the fuck up!"

"Drugs killed Jesus you know...oh wait, no, that was the Jews, my
bad."

"There are clingy things in the grass...burrs 'n such...mmmm..."

"The more I learn the more I'm killing my idols."

"Is it wrong to incur and then use the hate ridden, vengeful stupidity
of complete strangers in random Usenet froups to further my art?"

"Freedom is only a concept, like race it's merely a social construct
that doesn't really exist outside of your ability to convince others
of its relevancy."

"Next time slow up a lil, then maybe you won't jump the gun and start
creamin yer panties before it's time to pop the champagne proper."

"Reality is directly proportionate to how creative you are."

"People are pretty fucking high on themselves if they think that
they're just born with a soul. *snicker*...yeah, like they're just
givin em out for free."

"Quible, quible said the Hare. Quite a lot of quibling...everywhere.
So the Hare took a long stare and decided at best, to leave the rest,
to their merry little mess."

"There's a difference between 'bad' and 'so earth shatteringly
horrible it makes the angels scream in terror as they violently rip
their heads off, their blood spraying into the faces of a thousand
sweet innocent horrified children, who will forever have the terrible
images burned into their tiny little minds'."

"How sad that you're such a poor judge of style that you can't even
properly gauge the artistic worth of your own efforts."

"Those who record history are those who control history."

"I am the living embodiment of hell itself in all its tormentive rage,
endless suffering, unfathomable pain and unending horror...but you
don't get sent to me...I come for you."

"Ideally in a fight I'd want a BGM-109A with a W80 250 kiloton
tactical thermonuclear fusion based war head."

"Tell me, would you describe yourself more as a process or a
function?"

"Apparently this group has got the market cornered on stupid.
Intelligence is down 137 points across the board and the forecast
indicates an increase in Webtv users."

"Is my .sig delimiter broken? Really? You're sure? Awww,
gee...that's too bad...for YOU!" `, )
Onideus Mad Hatter [ Do, 11 Januar 2007 06:25 ] [ ID #1592406 ]

Re: FUSK!

Mowe Z. Slowley wrote:
> BuZZard wrote:
>> --

<snip>

>> BuZZard
>>
>>
>>
>
> don't bash the students.
> bad form.
>
> unless it was omh. I'm always for bashing omh.
>
> but he's so full of himself he probably never asks anyone for help.
> scared of getting bashed.
>

"I meant to do that"
...PWH
slowley [ Do, 11 Januar 2007 06:38 ] [ ID #1592407 ]
PHP » alt.php » FUSK!

Vorheriges Thema: Format of session id and $_SERVER['REMOTE_ADDR']
Nächstes Thema: gd2