Celeroo
30p35 comments posted · 0 followers · following 0
53 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
53 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
$item->find(0, array("fields"=>"t1.*, COUNT(t2.id) as cnt",
"from_tables"=>"table1 t1 JOIN table2 t2 ON t2.table1_id=t1.id ",
"groupby"=>t1.id))
something like this
53 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
111 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
Thanks for informing the issues. We have fixed and updated our framework. Please download the file again and try to install it. If you still face issues, let us know.
We have changed "$T_MESSAGES=$prefix.'messages'; TO $T_MESSAGES=$prefix.'guestbooks';" in the guest book example. So please check the example again and make changes in your code accordingly.
129 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
Thank you for your suggestions to improve SanitizeHelper. We appreciate it.
However, there is an issue with that. If developers talk about SQL and want to insert such words in their messages, the function would delete them too, which, of course, isn't what they want.
The paranoid() method on the other hand is to be used for usernames and similar data where it's sure that only alphanumeric characters will be required.
We do look forward to more suggestions and feedback from you.
Thanks again.
129 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
Thanks for pointing this out. We will fix it.
129 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
Having a forum is a very good suggestion and we just postponed it till now to focus on other developments.
But you do have a very valid point and we will give it a priority and have a forum up that allows discussion not only on Frame but also on our other products.
Thanks for your inputs.
130 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
Regarding the double-quotes working and not the single quotes, we are unable to find any reason except that the server may be playing funny games on you.
For the second one, there are PHP reserved keywords that will cause you the above annoyance. I believe we mentioned it somewhere in the document but agree that a detailed explanation is needed in the FAQ section as well. We will update the FAQ with a note on how to deal with the reserved keywords if you must use them in your Table and Class names.
130 weeks ago @ Celeroo - Celeroo Frame - The Si... · 2 replies · +1 points
Are you using XAMPP or WAMPP?
If you are using WAMPP please do the following
replace short_open_tag = Off with short_open_tag = On in the php.ini file
Then restart your local server.
Let us know if the same issue persists even after doing this.
132 weeks ago @ Celeroo - Celeroo Frame - The Si... · 0 replies · +1 points
You can get the last insert id by using the following function.
$DB->lid()
Brainchild