Mysqli 63 урок, при выводе постеров выводит весь массив в строчку?

1

Mysqli 63 урок. при выводе постеров выводит весь массив в строчку?

мой код:

<?php

function insert($name, $desc, $year, $rating, $poster, $category_id) {
$mysqli = new mysqli('localhost', 'root', '', 'kinomonster');

if(mysqli_connect_errno()) {
print_f('Соеденение не установлено');
exit();
}

$mysqli->set_charset('utf8');

$query = "INSERT INTO movie VALUES(null,'$name', '$desc', '$year', '$rating', '$poster', Now(), '$category_id')";

$result = false;

if($mysqli->query($query)) {
$result = true;
}

return $result;
}



$xml = simplexml_load_file("xml_files/movies.xml") or die("Error: Cannot create object");

//echo count($xml);

foreach ($xml as $movie_key => $movie) {
echo $movie->title_russian.'<br>';

foreach ($movie->poster->big->attributes() as $poster_key => $poster) {
echo $poster.'<br';
}
}

echo "<pre>";
print_r($xml);
echo "</pre>";


?>

это начала вывода в браузере, весь не стал копировать.

Джой
http://c.cinemate.cc/media/m/4/5/154054/0.big.jpg<brЛазурный берег<br="" style="color: rgb(0, 0, 0); font-family: "Times New Roman"; font-size: medium; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">http://c.cinemate.cc/media/m/3/1/159513/0.big.jpg<brСотрясение
mysqli
php

1 ответов

1

Несколько раз прочитал ваш вопрос и не понимаю о чем он:

Mysqli 63 урок. при выводе постеров выводит весь массив в строчку?

Sign up or Log in to write an answer