Posts: 2,305
Name: Keith Marshall
Location: West Hartford, CT
|
On heridoc structure, your ending line should be on a newline without any whitespace before it.
PHP Code:
echo <<<END <table border="0" width="100%" cellpadding="10"> <tr> <td width="50%" valign="top"> <form action="wiki.php?function=doedit?user=$userid" method="post"> Userid: $userid <br /> Username: <input type="text" name="username" value="$row[user_name]" /><br /> Realname: <input type="text" name="realname" value="$row[user_real_name]" /><br /> E-Mail: <input type="text" name="email" value="$row[user_email]" /><br /> Token: $row[user_token]<br /> </td> <td width="50%" valign="top"> Email Authenticated: <input type="text" name="emailauthenticated" value="$row[user_email_authenticated]" /><br /> Registration Date: <input type="text" name="registration" value="$row[user_registration]" /><br /> Editcount: <input type="text" name="edits" value="$row[user_editcount]" /><br /> <input type="submit" /> </form> </td> </tr> </table> END;
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|