| |
| |
| |
|
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 27 28 29 30 31 32 33 34 35
Comments:
<0> Drakas: remove the + after <1> ([^\!]) << matches _any_ character except ! <1> Elazar, rapsys you dont see the problem, do you? <2> Drakas: Any single character except ! yes. <1> ([^\!]) matches the white space <0> Elazar: I already looked everywhere <2> rapsys: Then ask the person who wrote the module. No clue. <0> (source code, documentation(there is nothing)) <2> Drakas: So add a space in there. [^\! ] <2> rapsys: Then you're SOL. <1> ... <0> Elazar: it's a coded with foot module, completely broken <2> (9:47:05 AM) Elazar: rapsys: Then you're SOL. <3> if (ereg("[A-Z]", $phrase)) ... <3> how does import work again ? <2> Drakas: If you don't want it to catch a space, you need to include that in the expression.
<3> import("filename") ? <1> Elazar: i don't want to catch anything.. <0> Drakas: what do you want to do with your regexp ? <1> i think i know my problem <4> plese tell me what'wrong it cant find my page <4> http://pastebin.com/570384 <5> Epper_: the problem with your code is that it expects the text field to be on the same page. it's not... <5> Epper_: i want to the submit to be run and for the text field to be initialised all by clicking on a link on another page <6> _zz, is it in another frame or a window <6> ? <3> include("filename.txt"); ? <5> Epper_: it's in neighter <5> *neither <7> If i post text into a <textarea> and then want to echo it inside a DIV, how do i make the text appear in the same way as it did in the textarea i pasted it into? <3> ? <3> im touching my weiner as we speak fella's <3> **** I forgot this is not the place to say something like that <3> wooooooooooooooooooooooo <3> whooopT WHOOOOOOOOOOOOOOOOOOO <5> Epper_: i thought there might a php thing for something like this <3> http://www.tizag.com/phpT/include.php <1> "/([^\!]?)(\{)(\$)(\w+)(\})/","\\1\\4" << seems like the ([^\!]?) _matches_ " <1> * ! <8> Is there an easy way to check if a number $i is even or not? <6> Is there any way to run code from a function into global scope? <3> when you import something it can just be other html code right ? <6> sorry... Only one answer will make me happy :D <9> laurens_: is_int($i / 2) <3> die <4> plese tell me what's wrong it can't find my page <4> http://pastebin.com/570384 <4> i'm sure thet code is corect <4> but i dont know where is the bug <1> thanks for help <3> im trying to include files with html/css code... why wont it work ? <3> np <3> includes need to be php code ? <6> eval scope? <4> franky999: can you help me? <1> lol <4> i try to make a code t$header.="Expires: Mon, 26 Jul 1997 05:00:00 GMT"; <4> $header.="Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"; <4> $header.="Cache-Control: no-cache, must-revalidate"; <4> $header.="Pragma: no-cache"; <4> header($header); <9> no <1> dont flood! <4> ok <9> I can't help ypu <9> you* <1> :DD <4> drakas? <10> gangster`s: One per line. <10> header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); <4> Etriaph: http://pastebin.com/570384 <4> it isn't about the headers <4> please have a look in that paste bin <11> how do you know that? <10> Separate each with \n btw <10> If you want them all in a string.
<10> I think you can do it, but you have to delimit them. <10> MIME takes one header per line. <4> Etriaph: are u speaking with me? <4> ... u = you <10> Yes. <11> *sigh* <10> $header = "Content-type: text/html\n"; $header .= "Pragma: no-cache"; header($header); <10> I think that'll work. <4> ok but i told you ... it isn't about the headers... if you looked at my pastebin.... maybe you will understand that i have a problem with something elese <4> ... elese=else <10> So what's the problem? <4> i don't have any results from vars in the function <4> oi will pastebin the code and result in the same paste <4> Etriaph: http://pastebin.com/570409 <4> i don't understand... it just wont take my vars from the function <10> Well... <10> First of all, you're calling 'return' multiple times. <10> You... can't do that. <12> hi can I run a p***wd like program through php ?? <10> You can't do return( $bleh ); return( $foo ); the second statement will never occur <11> oops :P <10> You're also not ***igning the result of the function to anything. <4> how do i do that? <10> http://pastebin.com/570415 <7> Im having this problem, posting a text into a <textarea> and posting it, then i echo the text inside a div but the text doesnt appear with same linebreaks as when i pasted it into the <textarea> <7> want it to appear in the same way <10> Then you do $values = check($user_agent); and for your begin value, for example, you'd do $values["begin"]; <13> replace "\n" with "<br>" <7> been playing around with html_entities() but still no success <14> gimmulf: that sounds like an HTML problem, not a PHP problem (try nl2br() maybe?) <10> gimmulf: nl2br( $textAreaText ); <12> can I run a shell program that prompts and be able to ask the prompts ?? <7> Thanks!! <10> i-e: I don't think you can, and if you can I wouldn't try it. <10> gimmulf: np <12> :( <13> if you write an application that does so, then yes :) <3> <? include("html.txt"); ?> <3> can anyone see anything wrong wit it ? <13> yes, don't do "<?" <15> do <?php <13> please do "<?php" <13> one day you will not be allowed to do nothing else <10> I can't stand using <?php <16> BRB BMT <4> Etriaph: i'we replace <?=begin;?> with <?=$ret_val["begin"];?> but i get the same result <10> gangster`s: Uhh... <10> You call your check() function... <10> $values = check($user_agent); <10> Then it's $values["begin"] not $ret_val["begin"] after you call the function. <10> Read the PHP manual, I'm not sure you understand program execution flow or scope. <4> Etriaph: aha... <4> now it works ... <4> Etriaph: THX <5> how do i set variables in $_POST in a link? $_GET is easy because u change the URL, but is there a way to manipulate the $_POST via a link? <11> no <17> Quick question (hopefully): I have been given a link for syndicating some content. Its being included in html files using javascript (its linking to a jsp file though). Is it possible to use php to parse that link or whatever so that i can modify the layout of it? <17> Im trying to think of what the terms are that i should google to learn how to do this <18> hi folks <4> roue: hy <18> I'm running php with the libphp4 apache module. Is there any way to do mysql connection pooling across requests? <19> how was opera.com and mozilla.com able to do the hovering of image for their navigation <19> Im clueless. Is it pure CSS? <11> dunno <11> #web <11> view source <11> etc <20> op32codez: Which image? <19> the navigation at the top <20> ahh <19> You see how its hovers? <19> And the curosr is hand? <19> how were they able to do that?
Return to
#php or Go to some related
logs:
#lisp installing gtkglextmm ubuntu wu-ftpd Socket operation on non-socket ubuntu cdless install #sed ubuntu iptables sendmsg operation not permitted quickpar for suse #css #linux #centos
|
|