Здравствуйте! как вывести картинку и запустить php в JS
пока все находиться в одно html файле = все работает
НО как только я их разделяю по правилам: все php в javascript не работает
document.onmouseover = function(e){
if(e.target.tagName == 'A'){
if(e.target.id == 'a1'){
document.querySelector('#links').textContent = '<?php $conf = parse_ini_file("admin/new/1.dat" ); echo $conf[text1]; ?>';
document.querySelector('#image').textContent = '/admin/new/1.jpg';
}
if(e.target.id == 'a2'){
document.querySelector('#links').textContent = '<?php $conf = parse_ini_file("admin/new/2.dat" ); echo $conf[text1]; ?>';
document.querySelector('#image').textContent = '/admin/new/2.jpg';
}
if(e.target.id == 'a3'){
document.querySelector('#links').textContent = '<?php $conf = parse_ini_file("admin/new/3.dat" ); echo $conf[text1]; ?>';
document.querySelector('#image').textContent = '/admin/new/3.jpg';
}
if(e.target.id == 'a4'){
document.querySelector('#links').textContent = '<?php $conf = parse_ini_file("admin/new/4.dat" ); echo $conf[text1]; ?>';
document.querySelector('#image').textContent = '/admin/new/4.jpg';
}
if(e.target.id == 'a5'){
document.querySelector('#links').textContent = '<?php $conf = parse_ini_file("admin/new/5.dat" ); echo $conf[text1]; ?>';
document.querySelector('#image').textContent = '/admin/new/5.jpg';
}
}
}
<img id=\"image\" src=\"image\" alt=\"альтернативный текст\">
<div id=\"links\">Тут будет выводится текст из ссылок</div>
ссылки
<a id=a1 href=#>a1</a><br />
<a id=a2 href=#>a2</a><br />
<a id=a3 href=#>a3</a>
<a id=a4 href=#>a4</a>
<a id=a5 href=#>a5</a>