Search:
Type: Posts; User: konrados
Search :
Search took 0.01 seconds.
Thanks, I'll look at this.
I used to use my own sql queries for a long time, but I simply liked the simplicity of AR :)
Hi,
I have spent some time on CodeIgniter recently, but the only thing I really liked was the Active Record implementation - something like this:
$this->db->insert('mytable', array('name'=>'some...
Hi,
Let's say I want to replace every occurence of a word "dog" with a link to show.php?what=dog
Now I'm doing something like this:
$str = str_ireplace("dog","<a...
Hi,
Let's say I have a string (btw: this is a refferer to my site):
http://www.google.pl/search?somevar=someval&q=thisIsWhatIwant&q=f
I'm using this code to get the "q" value, trying to...
@NogDog : thanks, I'll look at this.
@criterion9:
I really would love to use mysqli but surpisingly it is not installed on most servers I have access to (including one paid one).
The same with...
This query building was just an example... I really thought that there must be a few very popular and cool classes, just like it is with jquery class in javascript. But OK, maybe ineed I need to do...
Hi,
I want to create so called "widgets", that is page elements other webmasters put on their websites.
Actually, I created a few, but all of them based on iframe. But, when I look at widgets...
Well, for example, in the past I tried a few classes, and one of them allowed me to do this:
$update=array();
$update['name']="blah";
$update['someOtherVal']="184";
$query =...
Thanks, but is there something not-that-simple, and a bit more popular? :)
Hi,
Sorry for my english. This is my second language.
Right now I'm using myslql directly like "mysql_query....". I would like to use a class which simplifes using mysql, but when I searched...