views:

117

answers:

4

hello all

i want to create a custom form with some fields that i could add/edit/delete on database

how integrate my form with wordpress?

do you know a website ,that have a tutorial about this process ?

thanks

A: 

This is a really involved question, so it shouldn't be asked here.

P.S. Not specific to WordPress but http://teamtutorials.com/web-development-tutorials/php-tutorials/inserting-data-into-a-mysql-database-using-php

Aaron Harun
thanks for reply, but i want to create this form in wordpresshow to integrate with wordpress??
user1400
Edit your theme to show the form and output the results.
Aaron Harun
A: 

See PHP - MySQL tutorial at WCSchools.

Sarfraz
A: 

Follow the Algorithm.

loop
  Buy/borrow a Book from library l in b
  loop b->pages in p
    read p
  end loop
  untill you understand
  if the b->isBorrowed()
    l->return(b)
  endif
  open google
    search for php tutorials in t
    loop t in p
      read p
    endloop
  close google
  learn()
endloop
untill you learn

Follow this Algorithm and You can do This.

Cheers Neel

+2  A: 

There are plugins that allow you to create custom forms (cformsII), and with some additional PHP knowledge you can retrieve the data using their API. I found this tutorial that quickly goes through installing, configuring and retrieving data from this plugin. That same page also listed some additional forms plugins that are worth looking at.

Another option is to do this using HTML and PHP without the use of a plugin. The following link will give you some insight in how to start and some code that can get you started:

http://www.paulmc.org/whatithink/2009/02/05/using-wordpress-templates-to-create-forms/

Note: There is a plugin called Formidable but only the Pro version allows you to easily retrieve the data from the database.

Waleed Al-Balooshi