Jump to content

406 page


techker

Recommended Posts

hy there guys im making a ringtone site for myself cause i have tons to share.now im finally catching mysql!lol

 

it's like math..

 

but im having a problem with something.im getting a 406 page and i don't know how to bypass it.

 

si this is my script(test script)

 

<?php
   
      include("connect.php");
   
      $dbhost="localhost";
  
      $dbusername="techker_techker";   

      $dbpassword="techker";   

      $dbname="techker_ringtone";

       

       

      // Connect to Mysql

      $connect = mysql_connect($dbhost, $dbusername, $dbpassword);

      //Select the correct database.

      $db = mysql_select_db($dbname,$connect) or die ("Could not select database");

      $file_location = "/home/techker/public_html/Ring/ringtones/";

       

      $name=$_POST['name'];

      $Gender=$_POST['gender'];

      $type=$_POST['type'];

      $file=($_FILES['file']['name']);

       

  

      $data = mysql_query(" SELECT *

      FROM `ringtones`

      LIMIT 0 , 30  ") or die(mysql_error());

      ?>

      <table>

         <tr>

            <th>File</th>

            <th>Name</th>

            <th>Type</th>

            <th>Gender</th>

         </tr>

      <?php while (FALSE !== ($info = mysql_fetch_array($data))) { ?>

         <tr>

            <td><? Echo "<a href=\"/Ring/ringtones/".$info['file'] ."\">".$info['file']."</a><br>";?></td>

            <td><?php echo $info['name'] ?></td>

            <td><?php echo $info['type'] ?></td>

            <td><?php echo $info['Gender'] ?></td>
            
            <td><a href=/Ring/ringtones/><?php echo $info['file'] ?></a> </td>

         </tr>

      <?php } ?>
  
      </table> 

 

now this shows the song and it links to it.suppose to..lol

 

<td><a href=/Ring/ringtones/><?php echo $info['file'] ?></a> </td>

 

cause basically this script move the file uploaded to a folder and record it's info in a database.

 

see it for yourself

 

the first link on the page is with this

Echo "<a href=\"/Ring/ringtones/".$info['file'] ."\">".$info['file']."</a><br>"; works great but 406

 

the second is with the above

 

http://tech-design.info/Ring/html3.php

 

 

 

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.