git-svn-id: https://msi/svn/firstRepo/Service/branches/Manut_2.2.3@28 0f545695-f87b-41b6-9a03-7f16563b5454

This commit is contained in:
2015-02-01 09:49:26 +00:00
parent d7010a19ca
commit 42837e9ee9
6 changed files with 76 additions and 37 deletions
+5 -1
View File
@@ -54,6 +54,10 @@ $app->get('/ricetta/body/:itemID', function ($itemID) use ($app) {
"where ingredienti.ID_RICETTE = " . $itemID . " order by ingredienti.posizione";
$retObj2 = $mysqlconnetion->queryToObject($query2);
foreach ($retObj2 as $ele) {
$ele["note"] = html_entity_decode($ele["note"], ENT_COMPAT | ENT_HTML401, 'ISO-8859-1');
}
$retObj[0]["titolo"] = html_entity_decode($retObj[0]["titolo"],ENT_COMPAT | ENT_HTML401,'ISO-8859-1');
$retObj[0]["procedimento"] = html_entity_decode($retObj[0]["procedimento"],ENT_COMPAT | ENT_HTML401,'ISO-8859-1');
@@ -113,7 +117,7 @@ $app->post('/ricetta/body', function () use ($app) {
foreach ($json_data_body->ingredienti as $arr) {
$note = "";
if ($arr->note != "") {
$note = str_replace("'", "''", htmlentities($arr->note));
$note = str_replace("'", "''", htmlentities($arr->note, null, "UTF-8"));
}
$query = "insert into ingredienti(ID_TIPO_INGREDIENTI, ID_RICETTE, Quantita, ID_TIPO_QUANTITA, Note, Posizione) values (" .