我正在寻找某种可以使用 PHP 和 MYSQL 轻松执行 CRUD 的库。
我的目标是在 flash AS3.0 中制作一些应用程序,我将从用户接收一些数据并将其存储在数据库中,并执行 CRUD 操作。我不想过多地参与编写 php 和 sl 查询。
我的场景是:
数据类型:[如 user_profile 数据等]
在数据类型 1 下添加许多具有各种类型的字段。
数据库表和关系等应该由我的 DREAM 库完成,然后用户在选择 Dtat 类型时,会显示相关字段来填充数据。
我将使用Flash AS3.0(Builder或IDE)来执行。如果我能找到一些 php 库,我认为 AMFPHP 可以将 flash 与 php 连接起来
I am looking for some kind of library which does CRUD easily using PHP and MYSQL.
My goal is to make some app in flash AS3.0 , where i will be receiving some data from user and storing in data base , and perform CRUD opertaions. I dont want to be so much involved in writing php and sl query.
My scenario is:
Data types : [ like user_profile data, etc]
add under data types 1 to many fields with various types..
Database tables and realtions etc should be done by my DREAM library, then user when select a Dtat Type, he is presented with related fields to fill up data.
I will be using Flash AS3.0 ( Builder or IDE ) to perform. If only I can find some php library I think AMFPHP can connect flash with php
发布评论
评论(2)
与您自己创建相比,您可能会花费更多的时间来尝试准确找到您想要的内容。
You'll probably spend more time trying to find exactly what your looking for than if you just created it yourself.
查看 http://codeigniter.com/ - 它是一个 php mvc 框架,可让您构建 php 应用程序、网站等。非常快,因为它已经内置了用于最常见任务(例如管理数据库)的方法和函数。
http://net.tutsplus.com 上有很多内容,其中有一个特别适合您http://net.tutsplus.com/articles/news/codeigniter-from-scratch-day-5-crud/,祝你好运!
Check out http://codeigniter.com/ - its a php mvc framework that lets you build php apps, websites etc.. very fast, because it has methods and functions already built in for the most common tasks like managing databases for example.
It has lots of tuts on http://net.tutsplus.com and one especially for you http://net.tutsplus.com/articles/news/codeigniter-from-scratch-day-5-crud/ , good luck!