我有两个字符串输入,在我的脚本中呈现迭代编写一个while循环:
<code>$odometerBrand=PREVIOUS ONC"ODOMETER BRAND"; </code>
<code>$odometerBrand=PREVIOUS ONC'ODOMETER BRAND"</code>
我试图用我自己的引文来包装它们,但是由于字符串值具有内部引用而在一个或另一个上断开。
<code>
array_push($actualInventoryArray,array("'".$OdometerBrand)."'" ));
</code>
所以我知道上面的代码不起作用,因为当对数据库感兴趣时,第二个值看起来像:
&#39;以前的ONC&#39; ODOMETER BRAND&#34; &#39 ;;或更糟糕的事情。
现在我将如何删除引号以将其插入数据库?
答案 0 :(得分:-1)
<code>
$pdo = new PDO("mysql:host=127.0.0.1;dbname=","root","");
$database= $pdo->prepare("INSERT INTO * VALUES () ...NOW()")
// * = yourtablename( columns names, "" , "" , "" );
$database->execute(
array_push($actualInventoryArray,array("'".$OdometerBrand)."'" ));
//you have to make a new pdo statement
</code>