Suggestions for php project with biiig forms

Discussion in 'PHP' started by Sifro, Jul 24, 2011.

  1. #1
    Hello,

    i need to do a technically very simple php project, but with very very huge forms...

    I have a good MySql DB already set up with all the data, i need to make the interface per inserting\viewing\updating data...

    The problem is that i cannot use softwares like phpmyadmin because i need the possibility to customize in great detail all my forms.

    Which of this strategies would you suggest me?

    - do everything form scratch
    - do almost everything form scratch, but generate html forms automatically with a software (which one?), then edit them
    - use some scripts like phpmyadmin and customize it (which script? It should allow templating e custom modifications to the forms)

    Thanks!
     
    Sifro, Jul 24, 2011 IP
  2. suryawl

    suryawl Peon

    Messages:
    54
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    0
    #2
    this is a simple cms generator that I made because I was so bored creating form for my website. you can try it here.

    please noted that I wrote this for my own need so for your big database file, please try with 2 - 3 field first. if you like it then you can continue with your own database.

    http://cmsgenerator.bandungfurniture.com

    Hope that helps! :)
     
    suryawl, Jul 24, 2011 IP
  3. ezprint2008

    ezprint2008 Well-Known Member

    Messages:
    611
    Likes Received:
    15
    Best Answers:
    2
    Trophy Points:
    140
    Digital Goods:
    1
    #3
    Why would it matter how detailed your forms that you say you couldn't use phpadmin? This doesnt make any sense to me as a database can be as detailed or complex as you need.
    build your form with as many variables as you need and using phpadmin to test your offline /online SQL database.

    Then create a separate password protected interface or offline that can access online, that can display all of the variable details and allow you to write /Edit them in standard HTML input textbox's
    so that your interface display page can pull database variables and display in input textbox var="<?php $var1; ?>" if you ont use the READONLY in the text boxes you can edit them.
    Then have a form submit button at bottom on your interface page that can grab all of those variables and upload them to the database again.
    using all the interface page to use
    // give your vars the real identifiable variable or data names instead of $var1
    $var1 = $_POST['var1'];
    $var2 = $_POST['var2'];
    $var3 = $_POST['var3'];

    Then pick it all up with SQL update code to replace all those variables /data back to their proper places.
    Do it for scratch , it'll take you a few hours, you can create a smuch or little editing and interface control to database as you need.
    point me BEEotch
     
    ezprint2008, Jul 25, 2011 IP
  4. Sifro

    Sifro Member

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #4
    thanks suryawl, but that's not exactly what i need.
    exprint, i know how to make a php backend\frontend.... -_- but i need something to create it faster
     
    Sifro, Aug 12, 2011 IP
  5. freelanceinphp

    freelanceinphp Member

    Messages:
    134
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    48
    #5
    use dreamweaver to design a form.
     
    freelanceinphp, Aug 15, 2011 IP