Edit:
Hello, i found solution to my problem !!! yeaaaah :woot: So IPB does not take the includes, but takes the curl, so here is what I did:
<php>
$annonceURL = 'https://my_website/news/new.php';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $annonceURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, 'Seey0u.info');
$resultatannonce = curl_exec ($ch);
curl_close($ch);
</php>
And to display it :
{$resultatannonce}
I want anyway. Thank you all for having followed my topic and I hope it can be used for other community members!