@# 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



Comments:

<0> WebLOCH, again, personal pref, but be consistent.
<1> erick415: did you read what i told you
<2> I found it was that I was using description as part of the string and it was in my mysql table
<3> anyone know a good site that really explains OO good? like what its good for and what everything does? been meaning to get into it for awhile but never really found any good sites explaining it
<0> eh.. you don't need to do oo
<3> best answer ever
<0> :)
<3> sarcasm aside, though
<0> strangely, I was not being sarcastic
<3> i just see a lot of people doing it and i dig through the code and it doesnt click... seems like a lot of extra code to do something so simple
<0> don't do oo for the sake of it.
<0> if "functional" works for you, go with it.,
<3> but OO looks so neat :o
<0> well, then study
<0> but please don't do it because "everyone else is"
<3> thats what i was trying to ask in the first place



<3> :P
<0> I don't know of any "good" examples :(
<3> i wasnt asking for examples
<0> well, maybe my framework, but even it is a mix between oo and functional
<3> i was asking for documentation on it
<3> or something that describes it well in detail
<3> and something that is not reference
<0> can't help ya there, reall
<0> can't help ya there, really
<0> sorry :(
<3> hehe
<3> more and more things use it, and i have trouble deciphering the madness.. i just want to learn more about it... not cause everyones doing it... just cause id like to learn it myself and understand it... possibly apply it where applicable
<3> wanted to know if it could help my code or help organize it
<0> maybe
<0> oo is just C structures with functions inside.
<3> yeah, i just dont seem to understand it for some reason
<2> check out the boo language or python
<0> python == good
<3> i hardly have time to figure it out with php, im not going to check out other languages to answer my needs :o
<2> boo is an adaptation of python they are very similar
<4> jonez: i bet you didn't mean functional but procedural/imperative
<3> well that cleared it right up
<3> no one has a good url explaining it?
<0> et, probably :)
<0> my point stands..don't do oo because you can, do it because it is necesary
<3> yeah, see, thats what im trying to find out
<3> i think my question just went over everyones heads?
<3> im trying to find out what its good for, useful for, etc, something that explains it
<3> to see if anything i do could benefit from it
<2> check out the boo website has a decent wiki
<5> I hate OOP.
<6> Anyone in here happen to use ERDs for Databases? If so can you recommend a linux application for desiging?
<3> ok, reading this stuff for another language just isnt helping (i figured it wouldnt)
<7> try dia WebLOCH
<7> it is pretty basic but it does the job for me
<6> Rhasta, yeah i have, but i was hoping for something more in the way of SQL generation and similar for speedy prototyping
<1> how do i execute something when script is to exit? i forgot :s
<7> php*admin ?
<7> where * is pg, my, etc.
<1> for example, there's an error and the script exits. how can i make it so that some functions wourl be called when existing (to destroy images/close db links)..
<7> depends what dbms you are using though
<6> Rhasta just mysql commonly, really looking for a decent tool to do it in, closer to visio, but without all the gumph
<7> i reckon enterprise tools to do ERDs and convert them to sql for mysql will be pretty thin on the ground / nonexistant
<6> Rhasta, all i've found so far is some plugins for netbeans, but due to the wonderfully complicated nature of cross-platform develoipment, I can't install them properly anyway
<7> yeh
<7> fun times
<6> in fact, netbeans 5 seems to be irrevokably broken now
<8> how do you get the querystring
<9> i have a question about msg_send function, if i run my test script as root, everything works fine, but if i run the script as a user, i get permission denied
<9> Jivemonkey: $_GET $_POST $_REQUEST
<8> gracias
<6> Isnt jivemonkey a racist term?
<1> how is mysqli better than mysql_* ??
<8> no
<8> at least not where i come frm
<6> ahh maybe its just here
<8> heh
<8> where's that?
<6> Kent, UK
<8> ah
<8> well, no offense intended



<6> none taken buddy, it doesnt meet my racial profile anyway, so i wouldnt have been offended haha
<9> hehe
<6> NovaKing, what was the question?
<6> Anyone here have any advice on storing file info in a db VS recalling it from the file when necessary ?
<9> i have a question about msg_send function, if i run my test script as root, everything works fine, but if i run the script as a user, i get permission denied
<6> NovaKing, maybe you need to change permissions on dir/file
<9> it's queuing system though ?
<9> if it the functions store it into a file
<9> they don't mention where
<6> you have a script you execute, by default probably as www-data, i meant the permissions on that script may need changing
<6> as for the queue i have no idea, sorry
<9> the script runs fine
<9> it's the msg_send function
<9> http://au.php.net/manual/en/function.msg-send.php
<9> Warning: msg_send(): msgsnd failed: Permission denied in /websites/default/file.php
<6> ls -ld /websites/default/file.php ?
<9> # ls -ld prebot.php
<9> -rwxr--r-- 1 antigremlin antigremlin 162 Apr 4 12:41 file.php
<9> why would the file.php be a concern
<10> hi everyone
<9> the msg_send doesn't do anything with it
<6> no but the call is IN the file right ?
<10> newbie questions is accepted here?
<10> i just want to understand the difference between TurckMM eAccelerator and free Zend Optimizer
<10> it seems that all of these for same goal: php execution optmization
<10> is it correct that is nonse to have installed ZendOptimizer _AND_ eAccelator at the same time?
<11> hey all, i have a question
<11> if i have a dynamic form with multiple entries with the same name tag, i can create an array by typing name="array[]", right? but how do i access each of those array entries later?
<11> it somehoow doesn't work with array[$i], and in the foreach loop it only accepts foreach(array as $a) instead of foreach(array[] as a)
<11> anyone can help me with this? ;)
<12> foreach ($_POST['fart'] as $key => $value) { print("$key has value $value<br>"); }
<11> thanks
<11> ok, another problem: i have another $_POST['var'], how do i reference to that without having it in the foreach()?
<11> another $_POST['var'] array even
<12> $_POST['var'][0], [1], [2]..
<11> ah ok, thx
<11> this supposed to work? $Produkt->add($_POST["Menge"][$i]);
<11> or is it $Produkt->add($_POST["Menge[$i]"]);
<12> try http://nl3.php.net/manual/en/ref.array.php
<13> i need a little board on my homepage, but not as large as phpbb provides to be. is there a good small alternative?
<14> make your own!
<13> also thought about it, but I dunnow. why may I re-invent the wheel: )
<12> I heard someone talk about simple machines forum.. said it was really nice and all
<15> Hey how can i create 8bit images instead of 24bit png
<13> convert
<15> nk_: using ?
<12> `convert` is part of imagemagick
<16> Whats the name of that techno song that goes "What comes around goes around... etc etc"?
<12> doesnt ring a bell
<17> hi,, i just wan to ask a question, i am creating a list box, however i want two fields from mysql db to be listed in there, what shall i do?
<18> pachuhcay: two fields from a db? 2 fields from a table or 2 fields from 2 tables?
<17> two fields from the table
<18> pachuhcay: then do a single query and walk throught the result and build your list-oxes
<18> +b
<17> errm..
<17> hows that?
<17> sorry...
<18> have you ever selected some rows from a mysql-table?
<17> yeah
<18> select field1, field2 from yourtable where 1=1
<18> so.. do such a query and build up your box during the traversation of your query-result
<19> hmm, is there any function that parses a file as PHP and returns it contents as a string?
<19> include or require puts it at the place the function is called, afaik
<18> RoySmeding: parsing and returning as string?
<19> yes
<18> RoySmeding: that doesnt match.. does it?
<19> i wouldn't know
<20> hi
<19> my English isn't perfect
<18> RoySmeding: why parsing if you want the text only?
<19> well
<19> i meant returning the parsed data
<18> RoySmeding: parsed data?


Name:

Comments:

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






Return to #php
or
Go to some related logs:

unshift, pearl
move-uploaded-file php5 denied
#ai
#debian
performance max or count(*)
souce-list unstable ubuntu
ssh-askpass keychain ubuntu
#gentoo
#kde
#debian



Home  |  disclaimer  |  contact  |  submit quotes