Jump to content

sycoblast

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Everything posted by sycoblast

  1. <form action="process.php" method="POST"> <table align="left" border="0" cellspacing="0" cellpadding="3"> <tr><td>Username:</td><td><input type="text" name="user" maxlength="30" value="<? echo $form->value("user"); ?>"></td><td><? echo $form->error("user"); ?></td></tr> <tr><td>Password:</td><td><input type="password" name="pass" maxlength="30" value="<? echo $form->value("pass"); ?>"></td><td><? echo $form->error("pass"); ?></td></tr> the problem is line 3 at value="<? echo... you can not do that... you have to declare $form and then put value="$form"> and make the entire string a PHP string (the input type)...
×
×
  • 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.