Jump to content

[SOLVED] a mysql + link + " " charecter error


blueman378

Recommended Posts

hi guys i have this problem

i just noticed that the link prints the name perfect however it only prints the first word of the name in the actual url, and this causes it to on any names that are longer than one word to instead of having a link like beat em up its just beat, this would be fine but it means that this code

<?php
//gameform
global $database;
    $q = "SELECT cName FROM " . gsubcat . "
          ORDER BY `cName` ASC
         ";   
    $result = $database->query($q) or die("Error: " . mysql_error()); 
    /* Error occurred, return given name by default */
    $num_rows = mysql_numrows($result);


?>
  |   <?php   while( $row = mysql_fetch_assoc($result) ) { 
    echo "<a href=".$row[cName].".php>".$row['cName']."</a>   |  ";
}
?>

 

does not work as the .php is not printed on any links longer than one word

Link to comment
https://forums.phpfreaks.com/topic/83090-solved-a-mysql-link-charecter-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.