You missed a double quote here:

    echo " <fieldset>
            <ul style='list-style: none'>\n";




________________________________
De: Haig Davis <level...@gmail.com>
Para: php-general@lists.php.net
Enviado: miƩrcoles, 23 de septiembre, 2009 16:18:17
Asunto: [PHP] Parse error: syntax error, unexpected '>'

Good morning Everyone,

I'm have trouble with a simple HTML Checkbox list. I keep getting *Parse
error*: syntax error, unexpected '>'. I'm sure I'm doing something really
simple and basic wrong I just cannot seem to see what it is, any assistance
is appreciated.

Script:

<form method="post" action="http://bw.org/misc/cgi-test/test.cgi";>

<?php
$sql = "SELECT * FROM melstatus WHERE custID=$custID ORDER BY
aircraftRegistration";

        $q = mysql_query($q)
        or die ("could not execute query.");

    echo " <fieldset>
            <ul style='list-style: none'>\n;

    while($row = mysql_fetch_array($q))
        {
        echo " <li>".$row['melID']."<input type="checkbox"
name="\".$row['melID].\""/input> ";

        </li>\n";
        }
    echo "</ul></fieldset>

?>
</form>

Many Thanks

Haig



      

Reply via email to