PHP和JS代码未执行

i Have This PHP and JS Code on my web page.

<?php
include 'connect1.php';
$query = "SELECT URL FROM remontee_nlf ORDER BY URL ASC";
$result = mysql_query($query) or die (mysql_error());;
$counter = 0;
// write the values from the database into the javascript array
    echo "<script type='text/javascript'>";
    echo "this.styleListArray = new Array();";
    if ($result) {
        while($row = mysql_fetch_array($result)) {
            echo("this.nameArray[" . $counter . "] = '" . $row['URL'] . ", " .          $row['user_fname'] . "';"); // displays 'lname, fname'
            $counter += 1;
        }
    }
echo("</script>");

?>

The Problem is that when i execute the page containing the code, a part of this code doesn't get executed and it just shows on the page as a simple text :

"); echo "this.styleListArray = new Array();"; if ($result) { while($row =   mysql_fetch_array($result)) { echo("this.nameArray[" . $counter . "] = '" . $row['URL'] . ", " . $row['user_fname'] . "';"); // displays 'lname, fname' $counter += 1; } } echo(""); ?> 

I tried to figure it out, but i couldn't get it, if you can help brothers, that would be wonderful.

You have $result = mysql_query($query) or die (mysql_error());; change it to

$result = mysql_query($query) or die (mysql_error());

Also make sure $row['URL'] and $row['user_fname'] are available.

Try rewriting your code like this:

include 'connect1.php';
$query = "SELECT URL FROM remontee_nlf ORDER BY URL ASC";
$result = mysql_query($query) or die (mysql_error());
$counter = 0;
// write the values from the database into the javascript array

echo <<<HTML
<script type='text/javascript'>
this.styleListArray = new Array();
HTML;

$strLine = '';

if ($result) {
    while($row = mysql_fetch_array($result)) {
        $strLine.= "this.nameArray[" . $counter . "] = '" . $row['URL'] . ", " . $row['user_fname'] . "';"; 
        $counter += 1;
    }
}

echo $strLine;

echo("</script>");

First of all change your queries to use mysqli or pdo connections secondly try following code

$sql = 'SELECT URL FROM remontee_nlf ORDER BY URL ASC';
$res = mysql_query($sql, $con);
$rows = array();
while ($row = mysql_fetch_assoc($res))
    $rows[] = $row['URL'];

$str = implode('", "', $rows);
$data = '["'.trim($str).'"]';

echo '<script type="text/javascript">';
echo "var data = $data;";
echo 'console.log(data)';
echo '</script>';

check you console log.

enter image description here