PDA

View Full Version : [Help] Request Page?



Mikey92
06-06-2008, 09:00 PM
Hi,
Im trying to set up my request line on my website but i dnt no what to do with it, i am usin kristall panel.

I was wonderin if i have filled this code out correctly.

<?php require('sohabbofm.325mb.com/Panel/request.php');?>

if i have done it right i dont know where to put it or how to put it in a HTML Page.

Independent
07-06-2008, 03:22 AM
Hi,
Im trying to set up my request line on my website but i dnt no what to do with it, i am usin kristall panel.

I was wonderin if i have filled this code out correctly.

<?php require('sohabbofm.325mb.com/Panel/request.php');?>

if i have done it right i dont know where to put it or how to put it in a HTML Page.

If you're going to include, you must rename the extension to a .php file, and the code you have entered is incorrect.. I have fixed the code for you below..



<?php
include("http://sohabbofm.325mb.com/Panel/request.php");
?>

or using require...



<?php
require("http://sohabbofm.325mb.com/Panel/request.php");
?>

The web host you're using must support PHP to use these functions, visit http://www.php.net/ if you want to find out more.

Mikey92
07-06-2008, 11:41 AM
Do i just enter that code by its self in to PHP file

Independent
07-06-2008, 07:16 PM
Do i just enter that code by its self in to PHP file
Yes, but make sure the server is PHP enabled..

Ask your host, or just try the file.

Want to hide these adverts? Register an account for free!