@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19



Comments:

<0> It worked fine with 3 backslashes, is there any reason to use 4, or should I just leave it as it is?
<1> kuja: You did something right? What's wrong with you!!!
<2> I was trying with foreach ($array as $value) { $arrray[$value] = 'new value'; }
<3> Stormx2, use 4 as a general rule, but you can use 3 in some cases
<0> Ill use 4 then.
<4> Stormx2: '\\' is a literal \, '\\\\' is a literal \\
<0> I see
<4> However, observe: '\foo', a literal \ and foo. Because there's nothing to escape.
<0> but I thought I only wanted literal \?
<0> :P
<0> Ah I see!
<4> :)
<0> Thanks :)
<4> Stormx2: It's always better to escape properly even though PHP will attempt to be smart for you, for the sake of not having things **** up as more.
<4> Jymmm: :O
<4> Jymmm: I'm still EBIL!



<3> use single quotes, so php isn't smart anymore ;)
<4> Jymmm: Pfft, it's okay, I'm in the BoD for KHAOS :D
<1> kuja not anymore
<4> !!
<5> ! is silly!
<4> php-bot: Sorry :( ... forgive me!
<1> !kuja
<1> !+kuja
<5> kuja is no longer a member in good standing of KAOS. Please, stone him to death upon site.
<4> I'm immortal, punk!
<4> Have you seen my ***y new project structure? My enhanced IRC library will pwn. http://kuja.zapto.org:1337/rikku/doc/
<1> !+kuja
<5> kuja is a punk a55 beotch
<4> php-bot: fux y00
<4> Noooooooo
<1> kuja I think you're about to get fscked by a bot!
<4> php-bot: You are moron #1
<5> I think you lost me on that one, kuja
<4> Yeah, kuja is too powerful. I used The Force to remove his ops.
<6> kuja: Screwed :)
<4> Ahaha, that's right!
<4> That was like, uncool man! :(
<1> kuja your power sux
<6> Jy: knock it off
<6> er... Jymmm
<4> Jy? Mwahaha
<0> "kuja is no longer a member in good standing of KAOS. Please, stone him to death upon site." surely that should be "sight"
<7> Hello. Is this a support/help channel ?
<1> !+##php
<5> ##php is really 'Pretty Horny People'. The computer language is just a cover.
<7> :)
<8> what's possible so wrong with mail("mail@mail.se", "subject", "message", "no-reply@mail.se"); for example?
<3> zampa, read on php.net/mail
<8> I did :/
<8> i thought i did atleast :/
<4> !+func mail
<5> int mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]]): Send an email message
<4> Says here, the fourth parameter is headers.
<3> zamba, then read it again, especially the examples (I mean http://php.net/function.mail in fact)
<8> oh.. hmm.. *goes and check again*
<7> Does anyone know how to solve the LFS issue related to is_dir() filesize() that returns (errno=75 - Value too large for defined data type) on files larger than 2 GB ? I use this script for indexing files and it gives that error on files bigger than 2 GB. I have searched google, php.net and bugs.php.net as well as various documentation and i came up with a whole bunch of variations of solutions.
<9> colder: ok? :)
<9> leave me alone! :)
<7> some think it's related to apache and LFS, other that it's glibc, other say it's a kernel issue, others say compile PHP with: CFLAGS="`getconf LFS_CFLAGS`" ./configure (your configure options) , other think that recompiling with CFLAGS="-D_FILE_OFFSET_BITS=64" ./configure etc will solve it
<10> excuse me i have problem with php / checkbox
<10> anyone can help me ?
<10> anyone are alive ?
<11> try just asking
<4> !+ask
<5> If you have a question, please just *ask it*. And don't address specific people - ask the channel. If somebody knows, they'll answer. :) To get help more quickly, don't ask "can I ask a question," "can anyone help," or "does anybody use/know about foo". Be as specific as you can. Also, please don't /msg people without permission, and read the topic before you ask.
<4> GaMeZ: It's annoying to ask to ask.
<10> i try
<10> i have a php code with => echo '<br /><br /><input type="checkbox" name="case[]" value='."\"$row[num_quote]\"".'>'."\n";
<10> i have try some solution to send case array to another php but....i can't
<10> the other php page give me an array but i can't see in the array
<10> excuse me for my bad english :s
<4> Be more clear. What does it mean when you say: the other page gives you an array, but you can't see it?
<10> hi P41f0x



<12> hey GaMeZ :]
<10> kuja in fact my page1.php have a list with checkbox
<10> and i want to send my array $case to page2.php
<4> If you're trying to send non-form data, you will need to use sessions.
<10> but kuja i send with Post method
<4> Then it's $_POST['case']
<4> Not $case.
<10> hmm kuja and how to print an expression of array ?
<10> print $_POST['case'][0] ?
<4> Yes, if you want the first element.
<10> thank's i try it
<4> You may iterate it with a for/while/foreach loop.
<10> yes kuja
<4> foreach ($some_array as $value) { echo $value; }
<10> kuja it's well !
<4> Good.
<10> thank's you very much
<4> You're welcome.
<10> :)
<13> anyone got lotr battle for middle earth?
<14> [Nubh]Xsploit, sure ill sell it to you for 11$
<13> ...
<14> im 11$ away from my new gaming machine :)
<13> lol
<13> go give someguy head
<15> theconartist: +tax?
<16> how can I call the parent's parent in __construct??? parent::parent doesn't work
<17> you pay tax?
<15> He might
<15> +shipping too
<16> I have a method in cl*** A, then B extends A, and then C extends B, how can i call from C the method of A?
<18> you can't
<18> unless statically
<18> cl***::blah()
<16> oh ok thx domas
<19> lo
<15> mompe: er.
<15> mompe: Just use $this->AMethod();
<16> no because the method is redefined in C
<16> and i want to do the A method with the same name
<15> parent::AMethod();
<15> It looks static, but it's not
<16> but it would be parent::parent::Amethod() and that doesn't work
<15> No
<20> so... if C calls a method in B, and the method in B calls to parent::, wouldn't it reach A?
<15> Because B has inherited it from A
<16> hmmm but B has redefined it also :)
<15> Maybe you're not going about this in the right way
<15> Inheritance doesn't have parent::parent:: for a reason, I think
<21> hello is anything wrong in this : while( $row=myslq_fetch_array ($result))
<21> ?
<20> myslq
<22> anyone know a GOOD ticket SYSTEM?
<16> lol
<21> ha :((
<21> i need gl***es :(
<10> :)
<22> anyone know a GOOD ticket SYSTEM?
<11> google maybe
<22> like: INSERT INTO Reset_Dia
<22> (conta,personagem,dia,reset_qtd)
<22> VALUES
<22> ('$conta,personagem,dia,reset_qtd)
<22> ops...
<22> sorry!
<22> crafty syntax is good for LIVE support
<22> i need a TICKET support
<22> where all operators can see all tickets and etc :-)
<23> I've just upgraded my Apache 1.33 to Apache 2.0.54 on my Debian Linux box. All sites have moved smoothly execpt that written in PHP. I have PHP4 4.3.10 installed (and mod_php that I think is not used anyway). PHP scripts seem to be executed, but return either none (empty HTML w/o HTML header) or a bunch of errors like "Notice: Undefined index: ...". Since I'm total noob in PHP I can't figure out where to look. Apache error logs has no signs of PHP errors.
<24> Woo ive been unbanned.
<25> hello i'm trying to write a read notify script for email...ineed help regarding it....
<24> What with?
<25> lilkid, is that qs for me
<24> sns: yep


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #php
or
Go to some related logs:

qual gentoo pentium d
computing a fibonacci sequence
lwp::useragent content_type xml
jpgraph error not readable or does not exist
ubuntu ipt_ROUTE
preg_match polygon
#linux
#centos
#centos
lplayer ubuntu



Home  |  disclaimer  |  contact  |  submit quotes