Hi all
Ok ive integrated a php file on my board using the phpstart_include function and all calling a php file from another file on my website
this is my phpstart_include file
Footer code:
the File sp_ads.php is an automatically Link generator File what it does is randomnly displays links from the file
Basically i want 6 links to appear on my forum which ive done so
but i want to be in this format
link 1 ::: link 2 ::: link3 ::: link4 ::: link5 ::: link6::
baiscally i wanna use (::
as a seperator
how would i do that in the file? and what do i do
at the moment its just displaying normally like
link1 link2 link3 link4 link5 link6
how wud i achieve usng seperators?
Ok ive integrated a php file on my board using the phpstart_include function and all calling a php file from another file on my website
this is my phpstart_include file
PHP Code:
// Example of how to include a seperate file:
ob_start();
include("http://www.mpadc.com/forums/sp_ads.php"); -
include("http://www.mpadc.com/forums/sp_ads.php"); -
include("http://www.mpadc.com/forums/sp_ads.php"); -
include("http://www.mpadc.com/forums/sp_ads.php"); -
include("http://www.mpadc.com/forums/sp_ads.php"); -
include("http://www.mpadc.com/forums/sp_ads.php"); -
$your_code = ob_get_contents();
ob_end_clean();
// Now place a reference to $your_code where you want the resulting HTML to be displayed.
// This will most likely be the header or footer template.
PHP Code:
<b> Sponsored Links:</b>
<br>
$your_code -
<br>
Basically i want 6 links to appear on my forum which ive done so
but i want to be in this format
link 1 ::: link 2 ::: link3 ::: link4 ::: link5 ::: link6::
baiscally i wanna use (::

how would i do that in the file? and what do i do
at the moment its just displaying normally like
link1 link2 link3 link4 link5 link6
how wud i achieve usng seperators?
Comment