PDA

View Full Version : PHP on custom page


051119
09-14-2009, 07:19 PM
Hi,

I've made my own vB-powered custom page and also have this script but I'd like it to display the output on this page.

The script is
<?php

header('Content-type: text/plain');

$fp = fsockopen("nyder.davros.org", 4472, $errno, $errstr, 10);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "-\r\n";
$out .= $_GET['origin']."\r\n";
$out .= $_GET['destin']."\r\n\r\n";
fwrite($fp, $out);
$i=0;
while (!feof($fp)) {
$line[$i] = str_replace(array("\n","\r"),'',fgets($fp, 128));
$i++;
}
fclose($fp);
}
foreach($line as $value) { print $value."\n"; }

?>
And you can see the output at: http://www.railforums.co.uk/core.php?origin=bhm&destin=smethwick+galton+bridge&submit=Submit+Query which is plain, is it possible to get this output to display in my custom page?

Lynne
09-14-2009, 07:45 PM
See How to create your own vBulletin-powered page! (uses vB templates) (https://vborg.vbsupport.ru/showthread.php?t=62164) or [How-To] vBulletin API Basics: Creating Custom Pages & Misc. (https://vborg.vbsupport.ru/showthread.php?t=98009)