wordpress - How to store user information and allow user to edit, manage and delete it -
i working on website manage rental properties. users able go page, enter information particular property (address, owner, etc.) , "submit" information. problem having cannot find way manage information, give users ability delete information @ will. done on front end can't think of solution without significant sql injection concerns. ideally information displayed small (x) next each row.
i apologize may sound convoluted , vague.
- user submits information 0 many of rental properties.
- user goes page (or same page) , can view , manage properties
- user sells property; deletes 1 or more of properties
if can point me in right direction thankful!
you can use custom post types properties (you'd have custom post type called property) , meta data storing arbitrary info related each property. that's rough outline of how structure things project this.
you'll need fair bit of coding front-end forms, validation, storing/updating/listing data. news wordpress provide lots of nice things out of box, authentication/authorization, user management, great mechanism listing posts (a.k.a. properties) , categorizing them.
Comments
Post a Comment