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!
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!
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
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