submit form

submit form

by mariam ettih -
Number of replies: 4

hi

i have a simple form in which i have to enter

id student , first name, last name, address, tel .

with a button submit.

i m asking hoow to submit the enters??

what must i write in code php?

please i need help?? 

Average of ratings: -
In reply to mariam ettih

Re: submit form

by Marcus Caba -

Hi Mariam,

Moodle uses the PEAR-Quickform-classes for processing form data.

Take a look at the following files:

/MOODLE/user/edit.php
/MOODLE/user/edit_form.php

edit_form.php defines the form
edit.php processes the data (roughly speaking)

 

Still, if you are new to PHP this could be a challenge.