コードを関数として外部ファイルに入れ、別のページで実行しようとしています。
ここに関数があります
function listBoats(){
//get record set for all boats sort them by their "sort" number
$queryBoat = "SELECT * FROM `CSINSTOCK` WHERE `id` <> 'mainPage' ORDER BY `sort` LIMIT 0, 1000";
$result = mysqli_query($con,$queryBoat);
return $result;
そして、これが私のページにそれを含める方法です
include("monthly-specials-cs-functions.php");//get functions
listBoats(); //run query to list all the boats in the CSINSTOCK table
うまくいかないようです。ここで何が間違っていますか?