Jump to content

[SOLVED] Connecting And Inserting Into Database


phprocker

Recommended Posts

Hey all.  I'm trying to create my own "Contact US" form in a module on the main page of a Joomla site.  The problem is that I can't seem to get the data inserted into the database.  I have the form action "POST" to a page called dbc.php and then it gets redirected back to the main page.  Here is the basics of the dbc.php page.

 

<?php

if (isset($_POST['Submit'])){

if(!$dbc = @mysql_connect('localhost', 'username', 'password'))
{
die ('<p>Could not connect to the database because: <b>' . mysql_error() . '</b></p>');
}



@mysql_select_db('database');


// insert
$sqlquery = "INSERT INTO contact (id, time_date, first, last, phone, email)  VALUES (0, NOW(), '$_POST[first]', '$_POST[last]', '$_POST[phone]', '$_POST[email]')";

@mysql_query($sqlquery);

mysql_close();
}
header(Location: index.php);
exit();

?>

 

Can someone point me in the right direction on how to do this?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.