Results 1 to 4 of 4
  1. #1
    Join Date
    May 2008
    Posts
    11
    Tokens
    0

    Question [Help] Request Page?

    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.

  2. #2
    Join Date
    Dec 2007
    Posts
    1,683
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Mikey92 View Post
    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 Code:
    <?php 
    include("http://sohabbofm.325mb.com/Panel/request.php");
    ?>
    or using require...

    PHP Code:
    <?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.

  3. #3
    Join Date
    May 2008
    Posts
    11
    Tokens
    0

    Default

    Do i just enter that code by its self in to PHP file

  4. #4
    Join Date
    Dec 2007
    Posts
    1,683
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Mikey92 View Post
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •