| |
| |
| |
|
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> do i get a trial account? <1> cythrawll, avi//toshiba1 <2> eddiestone: nope the eclipse php extension has always been kinda flaky for me. I always seem to resort to lots of echo's <0> works in firefox/linux :p <0> zend is making a eclipse plugin btw <2> I'll beleive that when I see it <0> hold on <3> nife, and witch IDE do you use? <0> http://www.eclipse.org/org/press-release/20060321zendphpide.php <2> gvim or eclipse usually <0> http://www.eclipse.org/proposals/php-ide/ <1> cythrawll, hmm... you think it's just a problem with my particular browser? I fear someone else might have that problem later. <0> that could very well be <0> i wish my gf was online, i could have her try it on her mac <0> but alas she isn't <2> cythrawll: yeah I've seen the proposal I just don't know how much work they are going to put in it since they make a lot of money off their zend studio
<4> is it possible to tell when a cookie will expire? <0> well nife, their doing a huge thing they announced this year <2> well wow I sure shoved my foot in my mouth they have already relased a beta.... <0> to make php more popular than it is <2> hehe <0> they also releasing zend framework <0> and no big deal <2> yeah I really like the lucene full text search <0> TML made me feel sheepish once or twice today <0> :p <2> :-) <0> well, from what i understand zend is doing this big thing three fold: <0> 1. zend framework <0> 2. zend eclipse <0> 3. zend developer zone with all it's articles <0> which i've found handy more than thrice <2> Hmm I haven't looked at those yet <0> but anyways what issue are you having with php browser? <5> time to go back into PHP mode <2> I don't even remember honestly I think it had something to do with ajax php interactions <6> ok, i finally got my query string to output this "UPDATE 'users' SET 'status' = 'I' WHERE 'userid' = '8' LIMIT 1" <0> could be an issue with limitations of swt browser? <6> if that doesnt work when i run a mysql_query with that string, i have no clue whats going on <0> cuz i think phpbrowser is nothing more than swt browser <6> becauese it works fine in phpmyadmin <7> cythrawll: wats the name of that firefox plugin you described earlier? <2> yeah probably <0> developer toolbar <0> or web developer toolbar <2> http://chrispederick.com/work/webdeveloper/ <8> hrmm.... how can i vertically center text in OOO? <6> UPDATE 'users' SET 'status' = 'I' WHERE 'userid' = '8' LIMIT 1query failed <0> da-drew, don't use '' around your table and field names <6> whaddayaknow <6> quote them or put nothing around them <0> put nothing around them <0> if you need to put anything around them use ` <0> but like TML ratted me out earlier it's mysql specific <8> thats against standard SQL syntax <0> and itrebal rings in after it <8> lol <7> thnx <7> ;] <2> beerdeliveryguy: https://addons.mozilla.org/firefox/60/ prolly better to get stuff from mozilla.org <0> got it? <0> good <8> i had issues finding that out when switching toPostGresql <6> damn you know what the problem is <6> STATUS is an SQL command <0> then use `` around that field <2> da-drew: and don't put quotes around integer numbers its slower <0> but again it's mysql specific <6> #1054 - Unknown column 'I' in 'field list' <6> thats when i do `status` = I <0> you need to '' the I <0> cuz its a string <0> `status`='I' <2> users.status = 'I' <6> UPDATE users SET `status` = "I" WHERE userid = 8 LIMIT 1query successful <0> that works too
<6> yess!! thank you fellas! <0> you tracking now? <0> good <7> cool, got it <6> hate when little stuff lasts that lonjg <0> yeah <0> then your all like "DUUUR" afterwards <0> i think everyone has done that <6> yup <2> Ahhh yeah..... more then I care to remember <6> ive spent countless hours debugging missing semicolons or ending parantheses <4> Hmm, mind if I ask a question bout RSS here? :p How do I get the durned "RSS" button in the url for my website? <9> rukie: you have to do a link rel i think. ask in #web <4> thanks :) <0> yeah link rel is what yo uneed <0> i just did that a month or so ago <4> to and img and the .xml file? <2> add the link rel=feed type="application/rss+xml" <4> oh <4> cool, thanks :) <2> the type tells firefox or any rss aware app that its an rss feed so you see the little icon <10> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss url">, I think <2> true SecondV <2> anyone have any realworld experiance with running 5.1 ? is it stable enough ? <4> IRC is the source of all information :p screw the webpages. <4> 5.1 what? <11> lol <2> php......... <4> ... sorry.. I'm out of it.. lack of sleep :) <12> 5.1.what? :p <0> NOT 3 <4> I've got 5.1.4 installed on my system <12> 5.1.4 works nicely here, even with odd stuffs; <4> seems to work fine <4> gotta lub gentoo and its auto updates :p <2> I'm trying to decide if the extra preformance is worth the risk for me <12> had segfaults concerning stream wrappers in 5.1.2 <0> had some mysqli bound param bugs in 5.1.2 <2> Yeah I hope that nothing is wrong with 5.1.3 I don't want to deliver a server that I have to go back and change before I'm outta the office the first time <0> A critical bug with $_POST array handling as well as the FastCGI sapi have been discovered in PHP 5.1.3. A new PHP release 5.1.4 is now available to address these issues. All PHP users are encouraged to upgrade to this release as soon as possible. <0> from the front page of php.net :p <2> hahah that'll teach me to read <2> again <13> Is it possible to use includes to define functions in a cl***?? <14> mang <13> Just I need to separate the functions in the cl*** (for modularity) and require_once throws a fatal error <14> Mangusta: no <13> ack, crap <14> you need multiple cl***es apparently :) <14> perhaps you need to learn inheritance? <12> indeed, that would be dirty to include functions "on-demand" <13> well, inheritance isn't the problem, as I need modularity, and I can't write an inheritance tree for every possible combination of modules <14> you're doing something wrong ;) <13> lol <13> possibly <13> problem is, I have a cl*** to handle data source connection <13> this is then inherited by a cl*** which defines a set of methods to retrieve objects from this data source <12> there are OOP solutions to what you want. decorators may be one. <14> Mangusta <13> decorators? never heard of them, will take a look <12> "decorator pattern" <14> : sounds like you want decorators or the factory pattern :) <12> but.. maybe the magic __call function may be another solution <4> hmm, i ssomething wrong with while($row=mysql_fetch_array($username)) <4> I get a wierd error, says wrong result resource <15> #web <13> rukie, is $username a result resource? <13> ie, the return from a mysql_query()? <4> yes <4> $username = mysql_query("SELECT user_real_name from wiki_user where user_name LIKE '".$_COOKIE['CCHS_wiki_UserName']."'"); <0> rukie <16> rukie: SQL injection <0> hell yah <13> ouch
Return to
#php or Go to some related
logs:
openzaurus+sl-a300 #asm package php4_pear #css #perl making non-thread safe xs webmarshal debian perl pack_sockaddr xine: couldn't find demux for .kaxtv.ts gentoo Error: glXMakeCurrent failed
|
|