Jump to content

Imput Into Table


Screamwalker

Recommended Posts

I was actually using a little project at the moment, you could try this:

 

<?PHP

IF(isset($_POST['Start']))

{

MYSQL_CONNECT(...);

MYSQL_SELECT_DB(...);

 

$One="INSERT INTO tabeltest(tabelone_name,tabeltwo_email)VALUES('{$_POST['name']}','{$_POST['email']}')";

 

 

MYSQL_QUERY($one);

MYSQL_CLOSE();

}

?>

Link to comment
https://forums.phpfreaks.com/topic/271828-imput-into-table/#findComment-1398571
Share on other sites

I'm assuming since you posted in the MS SQL forum, you're indeed using Microsoft SQL?

 

If so, here are all of the mssql functions: http://us1.php.net/manual/en/ref.mssql.php

 

If not, what database are you using?

Link to comment
https://forums.phpfreaks.com/topic/271828-imput-into-table/#findComment-1398573
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.