只需使用 mySQL 进行 INSERT 即可,效果很好...
mysql_query("INSERT INTO FLIGHTS_AVAILABLE
(aircraftID, aircraftType, maxSeats) VALUES('$theaircraftID', '$addType', '$maxCapacity' ) ")
or die(mysql_error());
echo '<p>';
echo "The following details were added into the database:";
echo "<hr>";
echo $theaircraftID . $addType . $maxCapacity;
这很好用,但是我在网上查看过,虽然我听说过一个名为 IF NOT EXISTS 的功能,但网上对它的使用没有很好的解释。
无论如何,我可以在上面运行这个查询,前提是如果例如 $theaircraftID = 10,并且数据库中已经有飞机 ID = 10 的行,那么查询将不会运行?
感谢您提供的任何帮助,
汤姆