次のようなものを試してください:
<?php
$userType = $row['user_type'];
if($userType == 'admin'){
header("Location: /administration/admin.php"); // This line triggers a redirect if the user_type is admin
} else {
header("Location: /application/app.php"); // This line triggers for other user_types
}
?>
$row['user_type'];
SELECT
をシミュレートしています あなたのデータベースから、私はあなたのために接続スクリプトを書きませんが、これはあなたが調べる必要があるものへの単なるガイドラインです。また、MySQLは非推奨であるため、PDOまたはMySQLiを調べてください。