How to use ORACLE database in PHP (4)

Source: Internet
Author: User

Use OCI to input data to the data table 'email _ info'

Same as above, but it is written using OCI.

Related PHPCode:

If ($ submit = "click "){
// The submit button was clicked!
// Get the input for fullname and email then store it in the database.
Putenv ("oracle_sid = orasid ");

$ Connection = ocilogon ("username", "password ");
If ($ connection = false ){
Echo ocierror ($ connection )."
";
Exit;
}

$ Query = "insert into email_info values ('$ fullname',' $ email ')";
$ Cursor = ociparse ($ connection, $ query );
If ($ cursor = false ){
Echo ocierror ($ cursor )."
";
Exit;
}

$ Result = ociexecute ($ cursor );
If ($ result = false ){
Echo ocierror ($ cursor )."
";
Exit;
}

Ocicommit ($ connection );
Ocilogoff ($ connection );
}
Else {
Echo'

<Form action = insert. php method = post>

Enter name
<Input name = fullname> </input>

Enter the email address
<Input name = Email> </input>

<Input name = submit type = submit value = click> </input>

</Form>

';
}

?>

By the way, this script must be saved as insert. php, because insert. php is specified as form processing on the called page.Program

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.