Given this expression, if $id contains one or more double quotes, an error is thrown.
$query = '//book/chapter' . '[@xml:id="' . $id . '"]';
Given this expression, if $id contains one or more single quotes, an error is thrown.
$query = "//book/chapter[@xml:id='$id']";
I need to be able to build an exression that contains either double or single quotes in the search regarding of how I programatically build the expression.
Any insight would be appreciated.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php