| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Comments:
<0> ACK <1> Xolt: Do you have a php question? <0> heh <2> Not really, did earlier though... <2> I was seeing how many channels over various networks I can throw a "ping?pong!" like line out and see who knows how to respond, correctly <1> That's funny... I was gonna see how many ppl a I can get K-Lined from the network <2> :( <2> Could go for the CTCP PING and k-line all who reply <3> Hi guys, I'm sending emails to some customers of mine and I'd like to include links, and possible even forms. Is there some standard out there as to what you can include in your email ... html, javascript, images etc... I know that gmail accepts images, and form elements ... what about the others ...? <2> it's the question of would the client's email program accept those type of emails <2> ^ <3> most of my clients use hotmail, yahoo and various other online mail servers ... <2> formatted emails generally have no real point except to provide eyecandy to the blatently stupid
<4> babo: If I were you, I'd stick with plaintext. <2> link out to the forms <2> and such <4> AFAIK, if the client detects any URLs, most clients will automatically link them. <3> if i sent an email with a <a href='link' >LINK_TEXT</a> would it show up as a link or as a bunch of html text <4> babo: A bunch of HTML. <1> Actually OE displays it as a clickable link <1> when viewed as Plaintext <4> Just use http://somelink. It's likely that the client will turn it into a hyperlink. <3> kuja: yeah, I prefer plaintext too, but my emails will have to have links at least ... and would benefit from having a form too <1> Most PT clients will make a url clickable <5> i have a weird problem - i am using this -> mail($mail, $subject, $body, "From: foo boo<foo@boo.com>\nX-Mailer: PHP/" . phpversion()); and it works fine with 8 clients on my server but with one client when I use his domain name in the < > the mail is not going trough... what could be the problem? <6> phpdjt: PLEASE. seperate items in the header with \r\n not \n . <7> How would one go about posting data to a script on another server? <5> Gimp_: what do you mean? <6> phpdjt: you have "From: foo boo<foo@boo.com>\nX-Mailer: PHP/" for your header (and the phpversion thing) <6> you should be doing this: "From: foo boo<foo@boo.com>\r\nX-Mailer: PHP/" <6> note the \r\n instead of the \n <5> ok, i changed that but i still cannot use one of my domains in the < > <8> hello <7> Ahh, a 3d alien! <9> Yo; PHP newbie here. I'm trying to do something with arrays like "$array[$i]=1" in a while loop... but it doesn't like that. What am I supposed to be doing? <7> eric: What exactly are you doing? <7> SigmaX: ^ <7> If you have it in a pastebin send the link. <1> $array[$i] =1; -or- $array[$i] = '1'; <7> Jymmm: I think that is what he has. <10> *ahem*. I didn't have the array declared. I'll keep tinkering and come back if I have more troubles. ;-) <7> I'd replace [$i] with [] unless it is absolutly neccesary. <7> kk <7> Anyone know a way to send an IM via PHP ? <11> Could some one tell me what the @ operator does? <7> @whatever prevents the function "whatever" from displaying an error to the user. <12> BoarK: suppresses important error messages. don't use it unless you completely understand what you're doing. <11> ok thanks guys <13> sup all <13> can someone tell me wtf is wrong with this? http://pastebin.com/643540 unexpected $end on line 87? <12> samuel: that error means you're probably missing a } somewhere. Use your editor's brace matching to find it. <13> CryWolf, i know... ive been counting friggin braces for 10 mins now... but no idea... you know where bluefish has bracematching? <12> samuel: I don't know if it does. But in vim, just use % <13> CryWolf, ok, thx <14> re <12> samuel: btw, I prefer an indentation style which puts the closing brace on the same level as the opening statement. I find it makes it easier to spot mismatched braces. <13> CryWolf, thanks for the advice... ill keep that in mind <15> Hi! <16> Hello I am having a problem with array_walk_recursive... I am doing: $postdata = array_walk_recursive($_POST, 'mysql_real_escape_string'); but it returns this error: Warning: mysql_real_escape_string() expects parameter 2 to be resource, string given in \cms\sys\init_system.php on line 72. $_POST is a multi-array. Code is here: http://pastebin.com/643554 <17> what is the php command for do until?> <16> for <18> oh right, understand now... that was very cryptic marcrosoft!! <18> CopyNinja: i think while is more appropriate <17> do until counter = 10 <17> i guess I could do ..... do while counter < 10 <18> marcrosoft: well for or while will both serve the purpose, but in this case CopyNinja was right <16> yup for($i=0; $i < 10; $i++){ ... } <18> marcrosoft: for($counter = 0;$counter < 10 ;$counter++) <17> ok sweet :) <16> it sure is :) <17> where the heck is the php.net page on for function <17> i cant find it <19> is there anything with a quick processing time more secure than sha1 to use for p***words in PHP? <17> nm
<17> its under while <20> is there a reverse strpos <18> henriquev: not sure if it's quicker, but you can use md5 <18> ak47: ?? <19> dools: but, isn't md5 less secure than sha1???? <1> MD5/SHA1 IS *NOT* ENCRYPTION <21> Is there something to automatically create documentation of a PHP app based on comments, cl***es, methods, etc.? <22> peqe_, doxygen or phpdocumentor, or PHP's reflection objects (php5+) <22> -s <21> CloCkWeRX[a]: Thanks! <22> #$%$ <12> CloCkWeRX[a]: still trying to force an E_STRICT error? <23> i wish i could make love to a function, but love is just a function of reproduction :( <24> you could recast it if you used C! <25> How does Net/DNS.php get it's name servers? <25> unable to connect to Server name here:53 <25> can't find that string in php.ini or in DNS.php <26> $resolver->nameservers = array('192.168.0.254'); ? <25> Where's it getting the default from though? <26> I dont think it has a default <26> the default appears to be 'Server name here' <25> Gah .. ignore me <25> please ignore me <25> I'm an idiot of the highest order <22> http://hashphp.org/pastebin.php?pid=6494 <22> I'm using php 5.0.5 (windows); at some point the value returned by error_reporting() is int(0) <22> (starts as 2048 [E_STRICT] and finishes as such) - can anyone reproduce this in a different version? <22> pear::db version 1.7.6 <27> CloCkWeRX[a], you know PEAR isn't STRICT compliant right? <28> i'm looking for something like str_replace that accepts arrays, but i want to be able to limit the # of replaces that gets done, am i going to need to implement something on my own or does something like that exist? <27> thelsdj_, I'm not aware of any single function that meets your needs. <22> Gerry, yeah i know it's not strict friendly <27> k <22> but for some strange reason with pear db just after it does a parseDSN, it loses the current error_reporting setting <22> i can't think why and i can't find a scrap of code that changes the error reporting level anywhere in pear db :/ <27> Ask the #pear guys <27> I think they are on efnet <22> sssssshhh <27> hmmmmhttp://pear.php.net/support/ <27> oops <27> What's the "sssssshhh" for? <26> it's nice for 'stfu!' <27> Why? <26> dont ask me, I'm just trolling <27> heh <27> then stfu <27> =P <27> joke <22> you don't mention the fruity channel <26> hehe <27> Why is that? <27> They don't like it? <20> are there any params for curl if i am adding a cron job to just visit a simple url <29> I bet they have fresh citrics at #pear, I wonder how much for a bushel <22> they would get all sorts of unwashed m***es .. like... uh... me <29> unwashed? ohh so, that was that distinctive odor, now I know <27> Well they are more likely to know why Pear does something like that than anybody else. <27> Hmmmmm.... "/msg php-bot guidelines" (without quotes) doesn't work for me? it just outputs the following: ">php-bot< guidelines" (again without the quotes). <1> php-bot is out to lunch <27> ahh <27> cheers <27> Well then how is a noob supposed to find out the guidelines? <27> ;0 <27> * :) <1> common sense <27> ahh <30> When i'm compiling PHP, it says "lex command not found" <27> I'll give that a shot <30> Any ideas?
Return to
#php or Go to some related
logs:
lib expat gentoo #perl synaptic package manager mirrors php balancing session affinity mylen sheath Presario V2000 horizontal sync long regex ebaad
probleme xubuntu configure xserver #gentoo
|
|