I have the following tables/fields, how can I make the insertion into 1? Now as I have the code into different querries there is nothing added in mysql.
Thank you in advance for your help.
mysql_query ("INSERT INTO categories (CategoryName)
VALUES
('$_POST[CategoryName]')");
?>
<?php
mysql_query ("INSERT INTO insurancecharges (InsuranceType)
VALUES
('$_POST[InsuranceType]')");
?>
<?php
mysql_query ("INSERT INTO packaging (PackagingType)
VALUES
('$_POST[PackagingType]')");
?>
<?php
mysql_query ("INSERT INTO products (ProductUnits)
VALUES
('$_POST[ProductUnits]')");
?>
<?php
mysql_query ("INSERT INTO transportationcharges (TransportationUnit)
VALUES
('$_POST[TransportationUnit]')");
?>