0

我想从 mysql 列中回显一个值,该值与 php 变量 90% 相似。仅回显与 php 值相似 90% 的值。我认为在这种情况下,like 子句不会有帮助。

  <?php
  $x = $_GET[x];
  $con=mysqli_connect("example.com","peter","abc123","my_db");
  $res =  mysqli_query($con,"SELECT * FROM text");
  while ($row = mysql_fetch_assoc($res))
 {
     $string[] = $row['text'];
 }
  foreach ($string as $y)
 {
  similar_text($x, $y, $percent);
 }
  if ($percent>"90")
 {
   echo $string ; 
  ?>

我认为上面的代码有很多错误。我欢迎为我的任务提供一些新的解决方案。

4

0 回答 0