@# 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 20 21 22 23 24 25 26



Comments:

<0> mattmc, what functions am I looking at there?
<0> mattmcc that is.
<1> i can't seem to find a connection string, for timesten db, should I be using equivlent to oracle connection string?
<2> thanks, jumping channels now, thnask for theh eads up
<3> Is there a function to check to see if cookies are enabled on the user's browser?
<4> madsara: http://php.net/outcontrol
<0> Thankx.
<0> mattmcc Am I in danger of eating an ***load of memory using ob_start() though?
<5> what is the easiest way to print out the values of a $_POST ?
<6> shale: print_r
<5> aside from print_r.... (i just want the values)
<6> foreach()



<5> ok i'll read up on that
<5> i tried for ($i=0; $i<count($_POST); $i++) { echo $_POST[$i]; } but for some reason its not working
<6> shai: $_POST isn't a numeric array, but usually a ***ociated array
<5> ok thx
<7> shale: use foreach :)
<5> ok thanks
<5> foreach much better than for for this task
<7> shale: yup !
<5> does the _POST array also contain the name of those form fields?
<8> i want to detect the Max file upload size possible on a Linux server. I searched php.net for an answer and didn't find one. Anyone?
<6> ini_get()
<7> shale: foreach($_POST as $key=>$val) { ... }
<7> shale: in that loop echo "[$key][$val]"; to see what is going on. :)
<3> Is there a function to check to see if cookies are enabled on the remote user's browser?
<5> ok thx i'll try that
<8> Stormchaser, thanks
<6> :)
<2> maybe reg ex isnt wnat im lookign for mabe its preg_split anyone know stuff about preg split?
<5> arcannon works great thank you
<7> yay thats my one good deed for today.
<5> ok you can go back to being a slimey bastard ;)
<7> yes! ;)
<8> Stormchaser, it says 8MB yet I am unable to upload files more than a 500KB. Whats wrong?
<6> basix: You probably don't have max_post_size too low
<8> Stormchaser, post_max_size = 8M
<2> hummm how do you set a wild card in preg_slit?
<2> split*
<7> basix: what version apache are you running?
<7> basix: I heard there is a prob with apache version 2.0.55 and upload size.
<8> arcannon: i think its 2.0.54
<7> basix: hrmm that one should be ok then :)
<6> LLX: what are you trying to pull?
<2> i have a string, its several lines what im trying to do is from say a like liek this "<!--Checked-1-Checked-->" extract the 1 to a $ischecked variable
<8> arcannon, its 2.0.49
<7> basix: I only heard of issues with 2.0.55 =P
<6> Hm... that was dumb...
<6> I got this from server: " If this server is an IPv6 one, try /server -i pants on fire"
<5> ok here's another one... as i'm looping through an array, how can i pull out just the vars that have a certain key word in them?
<9> hi
<7> shale: if($key == "certainkeyword") { echo $val; } ?
<9> someoen can help me with an error of a mail function ?
<6> what error?
<5> sorry arcannon i was unclear... i mean a keyword that may appear within the string
<5> eg: blahmommyblah
<5> just want to get the ones that have "mommy" in them



<6> shale: strpos()
<2> i have a little entry on code walkers explaing the problem in detail storm, if you dont mind me providing a link?
<7> shale: I second strpos ;)
<5> ok i'll look it up, thanks
<6> LLX: I missed the question. Can you repeat it?
<10> is the register globals option something I can set in a apache parameter?
<9> Stormchaser, Warning: mail(): Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in d:\archivos de programa\easyphp1-8\www\skdublin\window_form.php on line 9
<9> thse one
<9> these
<2> here storm, http://codewalkers.com/forum/index.php?action=displaythread&forum=phpcoding&id=16129&realm=default i think it mugh explain me better then trying to maintail irc etiquete for losting
<10> is Register Globals a setting i can make in my apache.conf file?
<6> yes, and you don't want that.
<2> the link show up ok storm? or are you seeing a big blank line wherei tried to provide a link of the descripion in detail?
<10> Stormchaser, are you talking to me?
<6> Mike3: yes, I am
<2> (is tempted to makea dirty harry joke about storm chaser...)
<10> Stormchaser, so I want register globals off
<10> Stormchaser, but is there a way (just for testing) I can p*** a paramater to a certain virtual host to turn it on?
<11> php_flag register_globals on
<10> Stormchaser, I am testing an Open Source program and I think it's calling for it
<11> That can be anywhere in your httpd.conf. Main scope, <directory> <virtualhost> whateve
<6> Mike3: Better try cpcommerce instead.
<11> Stormchaer: Remind me, were you one of the whacko-anti-$_REQUEST zealots?
<2> i prefer to just dive head first int oa custum CMS for the authorize.net getway myself..whats your payment gateway mike?
<10> Stormchaser, thats awesome thanks i will read up in it...this is actually a web calendar program
<2> good luck then, mike
<6> Pollita: nah... I'm a nut, but not that kind... I usually prefer to know, where the request came from :)
<2> did i give you the relevent info storm?
<6> LLX: You probably want something like #<!--(.*?)-(.*?)-.*?-->#
<11> okay, nevermind them
<11> then
<6> Pollita: 'them' is okay, too :)
<12> how do you evaluate if a form object textbox is empty or not if you are looking in a $_GET? would if(!empty($_GET['textbox'])) work?
<11> sure
<11> it'll work fine
<2> so $chars = preg_split('#<!--(.*?)-(.*?)-.*?-->#', $PagesArr[$k]);?
<12> Pollita: will it ever result as false?
<2> or !isset(...) shoud work poll
<11> falieson: If it didn't then it wouldn't be a very useful if statement
<6> LLX: you probably want preg_match_all instead
<11> LLX: No
<12> Pollita: right, which is my probablem at the moment
<11> falieson: What is?
<11> wooo colombia represent!
<13> colombia?
<11> .co
<11> *** f3l (n=Administ@pcsp190-61.supercabletv.net.co) has joined channel ##php
<14> Hi all, if i wanna search a 3 dim array for a value.. is that a nested foreach or is there a special function for ?
<12> Pollita: www.worldenergies.net (here is the code -> http://pastebin.com/548974 )
<2> so lets see $chars = preg_match_all('#<!--Checked-(.*?)-Checked-->#', $PagesArr[$k]); wich have chars = 1 if in my code is the line "<!--Checked-1-Checked-->"?
<13> ah, ok
<14> sorry a w dim array
<14> a 2 dim array
<11> DOUBLE-U DIMENSIONS???
<11> My god man, you'll tear the fabric of space and time!


Name:

Comments:

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






Return to #php
or
Go to some related logs:

#perl
LaTeX Error: Something's wrong--perhaps a missing \item
attr AND rootkit
warning: format '%d' expects type 'int *' type 'int'
/usr/bin/php: bad interpreter: No such file or directory
xorp iptables
unnown aplication
gateway g6-350 ubuntu
#linux
#web



Home  |  disclaimer  |  contact  |  submit quotes