| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10
Comments:
<0> lol <1> The mexican staring frog of southern sri lanka <1> Hypno's recurring series has been shown several times <1> and Hypno was in the petshow <0> heh <0> i think thats where i saw him <1> he won by controlling the judges <0> yeah <0> lol <0> i wish they still made episodes for futurama ;\ <1> I wish you could still argue just cause on murder <0> heh <2> time to lunch <0> http://web.qx.net/lhaddix/htoad.htm <0> all hail hypnotoad >_> <1> Jaster
<1> wie gehts <3> gut ) <3> aber ich spreche deutsch nicht ;) <1> What did you want today when you called? <1> Jaster, was ist das scheiB? <4> heyas :) <0> hey <1> Jean Baptist! <4> yo. <1> wie gehts? <4> I'm someone's dad!!! <1> ouch <1> I'm sorry <4> ah well - he's cute :) <1> Fair enough <1> Congrats then <4> thankee thankee <4> don't worry poetic justice - he sleeps even less than I did <1> where you livin these days? <4> sydney <1> ew <1> well no <1> I can't say that <1> I've other friends there <1> I personally think I'm probably in the best city on earth <4> ...which is? <1> Las Vegas <1> of course <4> (of course) <1> Everyone should live here <1> and they practically do <4> so, thinking of something other than *amazing* boobs that I don't get to play with... ajaxy framework thingies <4> any out there that are worth the h***le, or should I just invent my own wheel? <1> I like my wheel <1> I generally dislike frameworks <1> for the same reason I dislike asp.net <1> it limits you too much <0> heh <5> Warning: copy(avatars/BoiToys-1.gif): failed to open stream: Permission denied in /home/vizualr/public_html/mojo-ho/avatars_add.php on line 30 <5> whats it mean when u get an error for failing to open stream? <5> where could my error be coming from <6> hi <6> why when executing index.php in my browser--i'm getting the listing of codes only <6> join #drupal-support <6> can someone help me <7> you probably don't have php installed correctly <6> how to install correctly? <8> yeah it sounds like the server/web account/whatever you're using doesn't have php support <8> that just spits it out like a text file sorta <6> yep <6> so i think i need to only change something in my httpd.conf <6> or need to build php again with apache conf <7> whatever it is, php.net will surely help. follow the installation instructions <8> someone should seriously make it possible to compile applications in php to run clientside on webpages. <6> how can we check if php was correctly installed? <8> I suppose by running a php file and seeing if it works *g* <9> phpinfo() <1> VenomX, as far as your earlier question; <1> They do make "compiled" php
<1> but its hardly worth it <1> and as far as it running clientside, that would involve plugins, and only those with the plugins would be able to use it <1> I generally recommend ajax + dhtml + php generated xml <1> OH and rum <1> I also strongly recommend rum <10> ditto <10> rum brings out all sorts of creative programmatic juices and other less related bodily fluids <10> rum makes the world go 'round <10> even when you're lying down with your eyes shut <11> hi <9> @chunk_split <12> (PHP 3 >= 3.0.6, PHP 4, PHP 5) <12> string chunk_split ( string body [, int chunklen [, string end]] ) <12> Split a string into smaller chunks <12> http://www.php.net/chunk-split <8> trollboy: this is a very interesting revelation.. so it is technically possible to run php compiled from a webserver, almost as a java applet or flash application (but not really obviously)? <8> I'm not really looking for cross-anything-compatibility, I'm just thinking stuff for me to play with when I'm bored right now :) <1> anything is possible <8> well basically what I'm going for is something "a little bit more live" than your general web interface, while not wanting to put in the time to fully master something like Java or Flash first. <8> since I'm lazy :> <1> then DHTML and AJAX <8> hmm ok <8> I'll have to look up how that works, not familiar with ajax <8> but since right now I'm using simple auto-refreshes (if triggered by various events) of iframes, anything beyond that would be a vast improvement. <9> @php $set = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz123456789000"; echo implode(", ",explode("\r\n",chunk_split($set,4))); <12> Result: ABCD, EFGH, IJKL, MNOP, QRST, UVWX, YZab, cdef, ghij, klmn, opqr, stuv, wxyz, 1234, 5678, 9000, <8> although from what I can understand ajax is to a certain extent that as well, but still sounds smoother to use. <9> how can i keep it from adding the last , ? <10> ansimation: any reason you're not just making ", " your "end" parameter for chunk_split? <9> not really <9> just messin' <13> @php echo 'lawl'; <13> :( <9> though that still adds the last one <10> beyond that you could always just test the length of the original string, if it's evenly divisible by the chunk len, you'll have a trailing bit there, then just substr from 0 to -strlen($endpiece) <9> @php $set = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz123456789000"; echo implode("",explode("\r\n",chunk_split($set,4,", "))); <12> Result: ABCD, EFGH, IJKL, MNOP, QRST, UVWX, YZab, cdef, ghij, klmn, opqr, stuv, wxyz, 1234, 5678, 9000, <9> of course <10> @php $set = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz123456789000"; $chunks = chunk_split($set,4,", "); if (strlen($set) % 4 == 0) $chunks = substr($chunks, 0, -2); echo $chunks; <12> Result: ABCD, EFGH, IJKL, MNOP, QRST, UVWX, YZab, cdef, ghij, klmn, opqr, stuv, wxyz, 1234, 5678, 9000 <9> poo <9> i guess i should get dressed and ready to go piss in a cup aye <14> hello, can someone help me with a php mysql charset question ? <15> only if you ask it. <14> I have a program wich runs ok on my computer, then I uploaded it to the server and the characters with accents and other things like started to appear with other simbols <15> ok <14> I used Mysql Query Browser to check the data on the server and the data was shown properly in the Query program <14> I tried stuff like "SET NAMES UTF8" and "SET CHARSET UTF8" before queries in php code with no result <15> how did you create the content? <15> ms word or something? <15> what charset are you sending to the browser? <14> content added to local database with PHP MY ADMIN <15> you just typed it into that? <14> yes <14> (one other thing, the text that is not outputed by PHP appears properly) <15> what? <14> some of the text in the page is not echoed <14> example <14> ... ?> boto <? ... echo " boto"; ?> <14> the one thats not inside <? ?> appears ok <15> o..kay? <15> what charset are you sending to the browser <14> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <15> but you're using utf-8.. <15> and send the content type in header() <15> you're using php, no need to set a header in a meta tag <14> note: only the text that comes from the database appears strange <15> good for it <15> christ. <15> ****ing 8.9gb of traffic yesterday <14> can this problem be due to php configuration? or mysql? <15> did you try what i said? <14> yes tried the header () <15> and you sent utf-8?
Return to
#php or Go to some related
logs:
#allnitecafe goes by poutine on irc
#india #netcafe #india #chat-world #chat-world who is chindi chor #vb #chat-world
|
|