从主文件中调用PHP文件

时间:2011-01-14 15:54:26

标签: php

我想通过从index.php开始分离上传文件等代码来正确安排我的代码,如何调用index.php中的upload.php? upload.php不是一个函数。有可能吗?

2 个答案:

答案 0 :(得分:5)

index.php

顶部的

<?php include('upload.php');?>

答案 1 :(得分:0)

<?php 

require_once 'upload.php';

//no close tag if you have no html code