genric add/edit/delete for MySQL?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ToeCutter

    genric add/edit/delete for MySQL?

    I'm an experienced java/C++/SQL programmer who hasnt used PHP. I'm
    looking for some generic database access pages for doing adds, edits,
    deletes, etc., hopefully with some error handling. I'd rather start
    with a basic shell of code, so I don't have to reinvent the wheel, and
    can just change connection string, database fields, etc.

    Anything out there that would help get me started?
  • neur0maniak

    #2
    Re: genric add/edit/delete for MySQL?

    ToeCutter wrote:
    [color=blue]
    > I'm an experienced java/C++/SQL programmer who hasnt used PHP. I'm
    > looking for some generic database access pages for doing adds, edits,
    > deletes, etc., hopefully with some error handling. I'd rather start
    > with a basic shell of code, so I don't have to reinvent the wheel, and
    > can just change connection string, database fields, etc.
    >
    > Anything out there that would help get me started?[/color]

    Why are you looking for people who haven't used PHP in a PHP newsgroup?

    Comment

    • Jochen Daum

      #3
      Re: genric add/edit/delete for MySQL?

      Hi,

      On 15 Jul 2004 15:52:38 -0700, bdgreen@pacbell .net (ToeCutter) wrote:
      [color=blue]
      >I'm an experienced java/C++/SQL programmer who hasnt used PHP. I'm
      >looking for some generic database access pages for doing adds, edits,
      >deletes, etc., hopefully with some error handling. I'd rather start
      >with a basic shell of code, so I don't have to reinvent the wheel, and
      >can just change connection string, database fields, etc.
      >
      >Anything out there that would help get me started?[/color]

      My project in the sig does that, its quite beta though.

      HTH, Jochen

      --
      Jochen Daum - Cabletalk Group Ltd.
      PHP DB Edit Toolkit -- PHP scripts for building
      database editing interfaces.
      Download PHP DB Edit Toolkit for free. PHP DB Edit Toolkit is a set of PHP classes makes the generation of database edit interfaces easier and faster. The main class builds tabular and form views based on a data dictionary and takes over handling of insert/update/delete and user input.

      Comment

      • Chris Hope

        #4
        Re: genric add/edit/delete for MySQL?

        neur0maniak wrote:
        [color=blue]
        > ToeCutter wrote:
        >[color=green]
        >> I'm an experienced java/C++/SQL programmer who hasnt used PHP. I'm
        >> looking for some generic database access pages for doing adds, edits,
        >> deletes, etc., hopefully with some error handling. I'd rather start
        >> with a basic shell of code, so I don't have to reinvent the wheel, and
        >> can just change connection string, database fields, etc.
        >>
        >> Anything out there that would help get me started?[/color]
        >
        > Why are you looking for people who haven't used PHP in a PHP newsgroup?[/color]

        Read the first line / first word of the post

        "I'm an experienced java/C++/SQL programmer who hasnt used PHP"
        ^^^

        Comment

        • neur0maniak

          #5
          Re: genric add/edit/delete for MySQL?

          Chris Hope wrote:
          [color=blue]
          > neur0maniak wrote:
          >
          >[color=green]
          >>ToeCutter wrote:
          >>
          >>[color=darkred]
          >>>I'm an experienced java/C++/SQL programmer who hasnt used PHP. I'm
          >>>looking for some generic database access pages for doing adds, edits,
          >>>deletes, etc., hopefully with some error handling. I'd rather start
          >>>with a basic shell of code, so I don't have to reinvent the wheel, and
          >>>can just change connection string, database fields, etc.
          >>>
          >>>Anything out there that would help get me started?[/color]
          >>
          >>Why are you looking for people who haven't used PHP in a PHP newsgroup?[/color]
          >
          >
          > Read the first line / first word of the post
          >
          > "I'm an experienced java/C++/SQL programmer who hasnt used PHP"
          > ^^^
          >[/color]
          Oops. I read too quickly and I mixed the first two of the second line in
          the first... Sorry!

          Comment

          • Tony Marston

            #6
            Re: genric add/edit/delete for MySQL?

            Take a look at http://www.tonymarston.net/php-mysql...plication.html.
            This describes a sample application I've put together where all the database
            access is handled in a single class. Each individual page is based on a
            common template, so the amount of reusable modules is very high.

            HTH.

            --
            Tony Marston

            This is Tony Marston's web site, containing personal information plus pages devoted to the Uniface 4GL development language, XML and XSL, PHP and MySQL, and a bit of COBOL




            "ToeCutter" <bdgreen@pacbel l.net> wrote in message
            news:cfffe705.0 407151452.61673 4a4@posting.goo gle.com...[color=blue]
            > I'm an experienced java/C++/SQL programmer who hasnt used PHP. I'm
            > looking for some generic database access pages for doing adds, edits,
            > deletes, etc., hopefully with some error handling. I'd rather start
            > with a basic shell of code, so I don't have to reinvent the wheel, and
            > can just change connection string, database fields, etc.
            >
            > Anything out there that would help get me started?[/color]


            Comment

            Working...