ghurty Posted September 13, 2006 Share Posted September 13, 2006 Hi, I am new at this.How would I go about creating a webpage that will be a front end for adding data into a table (mysql)?Thankx Link to comment https://forums.phpfreaks.com/topic/20575-how-to-create-a-frontend-for-addind-data-into-a-table/ Share on other sites More sharing options...
AndyB Posted September 13, 2006 Share Posted September 13, 2006 Basically, make an html form that submits to a php script. The php script abstracts the form data sent (validate it as you see fit), makes a connection to the database, then creates a MySQL querystring with the posted data values, and executes the query to add the information to the database table you chose.That's pointing you in the general direction. Link to comment https://forums.phpfreaks.com/topic/20575-how-to-create-a-frontend-for-addind-data-into-a-table/#findComment-90800 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.