woninana
woninana

Reputation: 3481

Call a PHP file from the main file

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

Answers (2)

Max Pronko
Max Pronko

Reputation: 1379

<?php 

require_once 'upload.php';

//no close tag if you have no html code

Upvotes: 0

Matt Asbury
Matt Asbury

Reputation: 5662

<?php include('upload.php');?> at the top of index.php

Upvotes: 5

Related Questions