Hi
I coded a page this way:
<?php
include 'index.php';
?>
but it's not working. I don't need to include here's index but want to know about remote including
remote include
Moderator: General Moderators
- superdezign
- DevNet Master
- Posts: 4135
- Joined: Sat Jan 20, 2007 11:06 pm
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
Remote inclusion is generally frowned upon. This is due largely to two this: security and speed.
- If the remote server is compromised the attacker compromises a second or third site for free.
- remote requests can take several seconds to finish gathering response data. The user will likely grow impatient.