Тема: Як вивести інформацію

Є два файла
file1.php

<form method="POST" action="page2.php">
число 1:
<input name="num1" type="text" value="">
число 2:
<input name="num2" type="text" value="">
<input name="go" type="submit">
</form>

file2.php

<?php 

 echo "Сума: " ,$_POST["num1"]," + ",$_POST["num2"]," = ",$_POST["num1"]+$_POST["num2"]; 

?>

Мені потрібно вивести результат з файла file2.php в file1.php (об'єднувати file1.php і file2.php в один файл чи використовувати фрейми не можна). Як це зробити?

2

Re: Як вивести інформацію

у файлі file1.php

include 'http://www.example.com/file2.php';

не підійде?

Подякували: FakiNyan, Betterthanyou2

3

Re: Як вивести інформацію

Можливо я щось не так роблю, бо коли підключає через include в мене помилки

Warning: include(file2php) [function.include]: failed to open stream: No such file or directory in Z:\home\localhost\www\php_priklad\page1.php on line 1

Warning: include() [function.include]: Failed opening 'file2php' for inclusion (include_path='.;/usr/local/php5/PEAR') in Z:\home\localhost\www\php_priklad\page1.php on line 1

4

Re: Як вивести інформацію

А Ви як підключаєте? Покажіть код.

5

Re: Як вивести інформацію

<?php include (file2.php); ?>
<form method="POST">
число 1:
<input name="num1" type="text" value="">
число 2:
<input name="num2" type="text" value="">
<input name="go" type="submit">
</form>

6

Re: Як вивести інформацію

include 'file2.php';

Спробуйте це , якщо файли знаходяться в одній директорії.

Подякували: Betterthanyou, koala2

7

Re: Як вивести інформацію

Betterthanyou написав:
<?php include (file2.php); ?>
<form method="POST">
число 1:
<input name="num1" type="text" value="">
число 2:
<input name="num2" type="text" value="">
<input name="go" type="submit">
</form>

http://www.php.su/functions/?include

<?php
// Следующий пример на работает, поскольку пытается включить локальный файл
include 'file.php?foo=1&bar=2';
// Следующий пример работает
include '[url]http://www.example.com/file.php?foo=1&bar=2[/url]';
?>

8

Re: Як вивести інформацію

<?php include 'file2.php';?>
<form method="POST">
число 1:
<input name="num1" type="text" value="">
число 2:
<input name="num2" type="text" value="">
<input name="go" type="submit">
</form>

Спробував
але помилки остались

Warning: include(file2.php) [function.include]: failed to open stream: No such file or directory in Z:\home\localhost\www\php_priklad\page1.php on line 1

Warning: include() [function.include]: Failed opening 'file2.php' for inclusion (include_path='.;/usr/local/php5/PEAR') in Z:\home\localhost\www\php_priklad\page1.php on line 1

9

Re: Як вивести інформацію

Вже все робить то щось Denwer психував, після перезапуску вже працює