There is some framework/tool to generate PHP code [message #170516] |
Fri, 05 November 2010 18:14 |
Santana
Messages: 1 Registered: November 2010
Karma: 0
|
Junior Member |
|
|
Hello,
i'am a newbie in PHP.
I have some tables in my database : CUSTOMER, INVOICE and PRODUCTS,
and i need to implement a form in order to manage this tables: delete,
insert and update.
You know some framework/tool to generate PHP code that allow me to do
this task ?
Can you help me please.
Kind regards,
Paulito Santana
|
|
|
Re: There is some framework/tool to generate PHP code [message #170517 is a reply to message #170516] |
Fri, 05 November 2010 18:25 |
Magno
Messages: 49 Registered: October 2010
Karma: 0
|
Member |
|
|
On 11/05/2010 03:14 PM, Santana wrote:
> Hello,
> i'am a newbie in PHP.
> I have some tables in my database : CUSTOMER, INVOICE and PRODUCTS,
> and i need to implement a form in order to manage this tables: delete,
> insert and update.
>
> You know some framework/tool to generate PHP code that allow me to do
> this task ?
I don’t think anyone here uses any of those things... we all here are
PHP coders.
I suggest you to research about how to handle post-data with PHP.
|
|
|
Re: There is some framework/tool to generate PHP code [message #170518 is a reply to message #170516] |
Fri, 05 November 2010 18:28 |
Erwin Moller
Messages: 228 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On 11/5/2010 7:14 PM, Santana wrote:
> Hello,
> i'am a newbie in PHP.
> I have some tables in my database : CUSTOMER, INVOICE and PRODUCTS,
> and i need to implement a form in order to manage this tables: delete,
> insert and update.
>
> You know some framework/tool to generate PHP code that allow me to do
> this task ?
>
> Can you help me please.
>
> Kind regards,
> Paulito Santana
Hi Paulito,
Yes, the tool it is called PHP and SQL and HTML.
Seriously. This sounds so basic that any framework will probably have
more of your time consumed than just doing it yourself.
Depending on the security demands you might consider hiring a competent
programmer.
If this a learningproject for yourself, just start building, and learn.
As for an out-of-the-box code generator for such tasks? I don't know if
they exist, or if they are trustworthy.
Probably not the answer you wanted to hear.
Regards,
Erwin Moller
--
"There are two ways of constructing a software design: One way is to
make it so simple that there are obviously no deficiencies, and the
other way is to make it so complicated that there are no obvious
deficiencies. The first method is far more difficult."
-- C.A.R. Hoare
|
|
|
|
Re: There is some framework/tool to generate PHP code [message #170520 is a reply to message #170516] |
Fri, 05 November 2010 18:42 |
Chuck Anderson
Messages: 63 Registered: September 2010
Karma: 0
|
Member |
|
|
Santana wrote:
> Hello,
> i'am a newbie in PHP.
> I have some tables in my database : CUSTOMER, INVOICE and PRODUCTS,
> and i need to implement a form in order to manage this tables: delete,
> insert and update.
>
> You know some framework/tool to generate PHP code that allow me to do
> this task ?
>
> Can you help me please.
>
> Kind regards,
> Paulito Santana
>
If it's only for you - not for other users - you can use PhpMyAdmin to
manage your database tables.
--
*****************************
Chuck Anderson • Boulder, CO
http://www.cycletourist.com
Turn Off, Tune Out, Drop In
*****************************
|
|
|
|
|
Re: There is some framework/tool to generate PHP code [message #170529 is a reply to message #170516] |
Sat, 06 November 2010 10:33 |
Captain Paralytic
Messages: 204 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On Nov 5, 6:14 pm, Santana <paulito.sant...@gmail.com> wrote:
> Hello,
> i'am a newbie in PHP.
> I have some tables in my database : CUSTOMER, INVOICE and PRODUCTS,
> and i need to implement a form in order to manage this tables: delete,
> insert and update.
>
> You know some framework/tool to generate PHP code that allow me to do
> this task ?
>
> Can you help me please.
>
> Kind regards,
> Paulito Santana
Take a look at
http://www.phpmyedit.org/
I think it might just meet your needs.
|
|
|