Jump to content

TeraKB

Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Everything posted by TeraKB

  1. also, you can echo a meta redirection tag, although that would fail to be pure php echo '<META HTTP-EQUIV="Refresh" CONTENT="10;URL=page.php">'; CONTENT="SECONDS;URL=link" you now have two choices
  2. hope this helps imagine you have a mysql query (lets imagine you are selecting the row where ID is 19, from the table "table", and it has the value YES, in field2, where YES or NO indicates if it is checked or not. $query = mysql_query("SELECT * FROM table WHERE id=". $_GET['id']); $checkbox_output = mysql_result($query, 0, 'field2'); if ($checkbox_output=='YES') { $checkbox=' checked'; } elseif ($checkbox_output=='NO') { $checkbox=''; } then, your html code should go like this: <input name="checkbox" type="checkbox" value="checkbox"<? echo $checkbox; ?>> hope this helps!
×
×
  • 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.