| |
| |
| |
|
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
Comments:
<0> how about now <1> mm nah <1> your not identified, you cant send them <0> u didn't just get it <0> do you got yahoo, or aol <1> nah, but you can email it to me: j4cob@hotmail.com <0> sent <1> mm havent received it yet <0> should be getting it any sec <0> i created a new database called newgoogle <1> mm still havent got it <0> dangit this happen the other nigth with my mom took her like 2 mintues to get a e-mail <1> do /msg nickserv help <0> k hold on <0> you've had to get it by now <0> let me send it throught my other e-mail
<0> k i sent it <0> through my other e-mail <1> lol still havent got it <0> lol <1> might be me <0> u gotta be kiddin me <2> !+u <3> Surely you mean 'you', not 'u'? The letter 'u' is not a personal pronoun. Talking like this in ##php may get you silenced. For details, /msg php-bot aolbonics <0> do you got msn messager ? <1> yeah mate, same email <0> lol <0> okay <0> let me add you <4> How do I allow apache to POST to a PHP script? <1> it comes default doesnt it <4> that is what i have been told <4> I didn't change anything, I'm using debian. <1> and it doesnt work? <4> no <1> does $_GET <1> ? <4> i do not know <5> hell <5> o <5> :) <4> get works <5> how do I get the parameters p***ed (like one in this case) via test.php?one <5> the question is open to the whole channel :) <6> Can there be an IF statement within the definition of a foreach loop? <1> trend: im pretty sure its $_REQUEST['QUERY_STRING'] <7> no <8> Capso, I'm not sure what you mean, but NO. <6> I.e.: foreach (if ($var) { $for } else { $for[0] } as $key => $val) { ... } ? <8> Capso, No. <7> $_SERVER['QUERY_STRING'] <6> Aw... <9> hey guys :) <6> Eml: You have to write out each instance in whole? <9> can one of you guys recommend a good php devel app? ;) <8> Capso, What do you mean? <7> Kingmilo: I like phpedit 1.2.5, dislike phpedit 2 not bug free enough and too cpu hungy <1> Kingmilo: if you can afford it, zend studio <8> Capso, To be honest I misread you quite good, but I still don't know what you mean. <10> Kingmilo: phpeclipse <9> woah, sounds like there are a few :) <11> hi <9> thanks guys <7> ah morning jbpros :) <12> hi guys, can someone pls tell me why i get  instead of space? <10> hi row ! <13> Hi <11> i'm sorry to be OT but does someone here able to commit on cvs at sourceforge ? (#sourceforge is like a desert). <13> I am getting this error while compiling dba with php: <13> ftp://rpmfind.net/linux/fedora/core/3/i386/os/Fedora/RPMS/gdbm-devel-1.8.0-24.i386.rpm <6> Is there a dynamic way to manipulate the order of output from echo ? <13> oops sorry <13> configure: error: DBA: Could not find necessary library. <13> any idea ? <11> you need a lib <7> jbpros: btw is there another way of doing this http://phpfi.com/117333 ? <11> or give access to it
<13> how to check to this ? <7> without the while statement <11> maybe if you do ./configure --help you'll see a switch refering to the missing lib <7> and I don't use md5sums anymore just direct compare <8> Capso, Ordet the output? <7> jbpros: it only does 1 col tag at a time for some reason. <6> Eml: Yes. <10> row: I can't seem to concentrate anymore I have not slept yet :x <8> Capso, Order*. I have no idea what you're trying to do to be honest. <7> jbpros: lol its cool it works for now anyway but I am sure if it was a single regexp be faster. <10> is it slow? <7> jbpros: if you fancy taking a oook I will upload latest code when you are around, I must have breakfast anyway just woke up :/ <10> ok I'll check that later, after some hours of sleeping :D <10> have a nice day <7> have a nice sleep :) <10> I will ;) see ya <5> can I not do echo 'whatever'; ? <5> instead of echo "whatever"; <5> it does appear like I can. .but that is dumb <7> trend you should use '' its faster as does not look inside <14> Hi, i was woundering if somebody can help me troubleshoot my code? cause it isnt functioning as it should, when i press the send button it dont seem to send it to the sql server. :( http://pastebin.com/713111 here u have the code. <7> trend include vars like echo 'foo'.$var.'bar'; etc <12> hi guys, im wondering if it is possible to insert text taken from a word document into a database and then retrieve it as it was inserted? <7> whats wrong with it roniez? <14> when i press send <14> it dosent seem to send it to the sql server. :S <7> roniez why do lots of echos... <14> wh en i try to insert some values.. <14> hold happit. <7> a multi line echo would most likely be faster. <14> habbit <7> roniez: any sql error, does it ever enter the if statement? <14> nope no sql error no nothing. <7> ah spoted the error <14> oh? <7> roniez: your form is seting a post not a get your looking for get values... <15> roniez: if it doesn't even respond, make sure the submit button inside whichever form controller you're using <7> "<form action='?add=post' method='post'>"; so you should be using $_POST or $_REQUEST not $_GET <14> u mean on if (isset($_GET['add']) && $_GET['add']) { ? <7> nah thats fine as you put that in url however why you are checking if its set and then checking its value like that I don't know <7> if(strlen($_GET['add'])) {} would be enough.... <7> I did not notice you had used $_POST else where .... <14> hm.. <14> Notice: Undefined index: add in c:\program files\easyphp1-8\www\db2.php on line 17 <14> when i switch my GET to yours. <5> crap.. how do I do this: echo '<a href="' & $_GET['file'] & '">'; ? <15> if($_GET['add']=="post"){.......} will do it <7> xpowerstudios: strlen should do it too. he might as well have a $_GET['action'] and a swich statement tbh <7> anyways breakfast calls <15> yup <0> d <14> xpowerstudios: nopew dont work, <7> roniez: print_r($_REQUEST); at top of script and see whats been sent and what should be sent and correct it, $_REQUEST holds post and get vars <14> undefined index. <7> lols <7> you ****ed up else where <14> i get from xpowerstudioss version of adding. <7> pastebin your knew code <15> roniez: when you click submit, does it do anything? try to submit/send any information? <14> all i get its like this. in my address field http://localhost/db2.php?caseID=asdasd&errorID=asdasd&desc=asdasdas&by=asdasd <15> roniez: reload, error, anything? <14> reloaded got undefined index "add" <15> got a pastebin? sorry mustve missed it <14> Array ( [caseID] => adsasd [errorID] => asdasda [desc] => asdasd [by] => asdasdasd ) i get this when i added what row said <14> xpowerstudios: http://pastebin.com/713111 <14> thats the one i started with. <14> and have then added what you have told me <7> no changed... <14> row? <14> http://pastebin.com/713124 -- that is my current one. <16> Is there a "greatest common subsequence" operator in php <17> is there any additinal logging than E_ALL to turn on? <15> try this http://pastebin.com/713129 <18> I should still be able to access the 0th element of an array like array[0] even when the array is ***ociative ... right ?
Return to
#php or Go to some related
logs:
rhapsody plugin firefox out of disk space linux fc pcspkr load #xorg VT-310DP linux kernel set_kernel_font: Operation not permitted #suse gentoo pckages #perl #gentoo dell1300 driver
|
|