我正在尝试在站点中嵌入专家系统。
我的专家系统代码是一个 Jess 脚本 (1.clp),例如:
(defrule ask_input
(initial-fact)
=>
(printout t "Welcome " ?*answer* crlf)
)
我在 php 中使用了一个表单,当我按下提交按钮通过 jess 运行 1.clp 时,我希望使用表单中的变量 fname 来保存?回答。
例如 1.html
<html>
<body>
<form action="welcome.php" method="post">
Name: <input type="text" name="fname" />
<input type="submit" />
</form>
</body>
</html>
欢迎.php
<?php
$name = $_POST["fname"];
// connect with 1.clp
?>
有任何想法吗 ?
我可以以其他方式做同样的事情吗?提前致谢