Hi, please help. I get an parse error msg:
Parse error: parse error, expecting T_STRING' orT_VARIABLE' or `T_NUM_STRING'
for the line <form method = 'POST' action = '$_SERVER['PHP_SELF']'>
But I can't spot anything wrg. Help!
<?
<form method = 'POST' action = '$_SERVER['PHP_SELF']'>
<select name = 'domain'>
<option><selected>Select an account</option>
while ($num_domains > $x) {
$domain = mysql_result($query_domains,$x,"domain_name");
<option value='$domain'>$domain</option>
$x++;
}
?>