Reputation: 3481
I want to arrange my codes properly by starting to separate the codes like uploading files, from the index.php, How can i call the upload.php in the index.php? The upload.php is not a function. Is it possible?
Upvotes: 0
Views: 86
Reputation: 1379
<?php
require_once 'upload.php';
//no close tag if you have no html code
Upvotes: 0