index.php:
<? session_start(); ini_set( "display_errors", 0); ?>
.. rest of the page ...
エラー:
Fatal error: Call to undefined function: escapestring() in ... ReviewOrder.php on line 54
ReviewOrder.php の 54 行目は次のとおりです。
foreach ($_REQUEST as $key => $value)
{
if ($value!="") $_SESSION[$key]=escapestring(trim($value)); // line 54
}