У меня вопрос относительно доступа к элементам html.
File1.PHP
<table id="tableID">
<tr>
<td> 
</td>
</tr>
</table>
<input type=button onclick=changeValue();>
<script type="text/javascript" src="file2.JS"></script>
File2.JS
function changeValue(){
//HAS AJAX OBJECT THAT CALLS file3.php to read a file
ajax.doPost("file3.php", callback); }
File3.php
function fileRead(){
...
$line = fgets($file_handle);
///After reading the lines of the file in File3.php
///I want to output it in the table in File1.PHP without returning
///it as xmlResponse to File2.JS
///Is it possible to acces the table in File1.PHP here?
}
Возможен ли этот поток?Потому что я не могу заставить его работать.
Помощь ..