Php Radio Dj Panel and CuteNews

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • mattski
    First Sergeant

    • Jan 2008
    • 78

    #16
    Re: Php Radio Dj Panel and CuteNews

    Yes, use whatever program you have to transfer files from your PC to your website.
    Mattski

    http://www.ScorpioFire.com


    Comment

    • Geminidavec
      Private

      • Jul 2011
      • 3

      #17
      Re: Php Radio Dj Panel and CuteNews

      Originally posted by jackielegs94 View Post
      hey well im in the middle of designing my site i have radio all ready and connect i just need a dj panel i have one wich gives me a login system and a request line and what song is play i add. I have no experience in php at all so i need help when i download it it comes up with all these php files and i really have no idea what to do with it?

      Help me please!!
      i have dj panel on my website unfortunately when a listener asks for a request there is no time or date with it does anyone know of a script please too add to the existing panel that allows the time and date of the request many thanks

      Comment

      • Geminidavec
        Private

        • Jul 2011
        • 3

        #18
        Re: Php Radio Dj Panel and CuteNews

        Hi folks does anyone have the script too add to the dj panel so that when a listeners asks for a request it adds the time and date that they actually sent the request in i would be very much appreciative of this by the way im running version 3.3 many thanks in anticipation.

        Regards Dave Gemini Sounds Radio

        Comment

        • Geminidavec
          Private

          • Jul 2011
          • 3

          #19
          Re: Php Radio Dj Panel and CuteNews

          Originally posted by Geminidavec View Post
          Hi folks does anyone have the script too add to the dj panel so that when a listeners asks for a request it adds the time and date that they actually sent the request in i would be very much appreciative of this by the way im running version 3.3 many thanks in anticipation.

          Regards Dave Gemini Sounds Radio
          guys this is the script i need too add the time and date to it thanks


          <?php require('connect.php');
          require('functions.php');
          if($_POST['submit']) {
          $bname = mysql_real_escape_string($_POST['name']);
          $btype = mysql_real_escape_string($_POST['type']);
          $brequest = mysql_real_escape_string($_POST['request']);
          $name = htmlentities($bname);
          $type = htmlentities($btype);
          $request = htmlentities($brequest);
          $ipaddr = $_SERVER['REMOTE_ADDR'];


          if ($bname==NULL|$brequest==NULL){
          echo "<center><h1><b>All fields are required.</b></h1></center><p>";
          }else{
          $query = "INSERT INTO rp_request (name, type, request, ipaddr) VALUES('$name','$type','$request','$ipaddr')";
          mysql_query($query) or die(mysql_error());
          echo "<p><b>--Your Request Has Been Sent--</b><p>";
          }
          }
          ?>

          Comment

          Working...
          X