<![CDATA[ More Ajax and DHTML magic - My Forums]]> https://forums.modx.com/thread/?thread=23352 <![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117787
http://www.aurore.net/projects/php-json/]]>
sottwell Jun 10, 2005, 08:01 AM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117787
<![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117786

Nice catch!


heheh, I can start my studies now hopefully!

Thanks!]]>
Carsten Jun 10, 2005, 01:08 AM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117786
<![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117785 Author: Justin Vincent ([email protected])
Web: http://php.justinvincent.com
Name: ezSQL
Desc: Class to make it very easy to deal with database connections.
License: FREE / Donation (LGPL - You may do what you like with ezSQL - no exceptions.)
]]>
sottwell Jun 09, 2005, 12:41 PM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117785
<![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117784 Carsten Jun 09, 2005, 11:27 AM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117784 <![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117783 Quote from: Carsten at Jun 08, 2005, 03:56 AM

ahhh, thanks!

Now I wonder how this would/could apply to modx?

I can see what scottwell is saying and I agree with her. Now as to how it will be applied... that’s something we will have to think about. But the end result will be very cool]]>
xwisdom Jun 07, 2005, 11:10 PM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic?page=2#dis-post-117783
<![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117782
Now I wonder how this would/could apply to modx?]]>
Carsten Jun 07, 2005, 10:56 PM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117782
<![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117781 ? ezSQL is a widget that makes it very fast and easy for you to use database(s) within your PHP scripts ( mySQL / Oracle8/9 / InterBase/FireBird / PostgreSQL / MS-SQL / SQLite / SQLite c++).

? It is one php file that you include at the top of your script. Then, instead of using standard php database functions listed in the php manual, you use a much smaller (and easier) set of ezSQL functions.

? It automatically caches query results and allows you to use easy to understand functions to manipulate and extract them without causing extra server overhead

? It has excellent debug functions making it lightning-fast to see what?s going on in your SQL code

? Most ezSQL functions can return results as Objects, Associative Arrays, or Numerical Arrays

? It can dramatically decrease development time and in most cases will streamline your code and make things run faster as well as making it very easy to debug and optimise your database queries.

? It is a small class and will not add very much overhead to your website.
How about
// Select multiple records from the database and print them out..

$users = $db->get_results("SELECT name, email FROM users");

foreach ( $users as $user )
{
            // Access data using object syntax
            echo $user->name;
            echo $user->email;
}
 


Or:

foreach ( $db->get_col("SELECT name,email FROM users",0) as $name )
{
            echo $name;
}


Or:

// Get one variable from the database and print it out..
$var = $db->get_var("SELECT count(*) FROM users");

echo $var;


I love it. And, it’s still under active development; he keeps it up-to-date. I’m on his email list and get mail every time he updates it and its fellow class, ez_results. The tutorial he wrote when he first developed it is still floating around several sites on the Internet
http://www.databasejournal.com/features/php/article.php/1485971]]>
sottwell Jun 07, 2005, 10:17 AM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117781
<![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117780 ?]]> Carsten Jun 07, 2005, 04:25 AM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117780 <![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117779
http://www.jvmultimedia.com/

I do believe that once I get this STUPID!!! document management system working correctly (and looking good at the same time), I’m going to go to work on converting the copy of modx I’ve already modified for multilanguage sites to using that library; there’s several way to do that, I’m trying hard not to think about it too much right now. I’ve already gotten sidetracked enough on this project.]]>
sottwell Jun 07, 2005, 01:33 AM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117779
<![CDATA[Re: More Ajax and DHTML magic]]> https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117778 I also think there’s a mail form builder in the works, correct?

http://vertexworks.com/forums/index.php?topic=122.msg1050#msg1050
]]>
xwisdom Jun 06, 2005, 01:22 PM https://forums.modx.com/thread/23352/more-ajax-and-dhtml-magic#dis-post-117778