* @version $Revision: 1.8 $ $Date: 2004/09/29 23:21:44 $ * */ // fix for page expired when user clicks back button. IE issue header("Cache-Control:"); header("expires :0"); include_once('config.php'); require_once('int_libs/mobo_id_tools.php'); require_once('int_libs/mobot.php'); require_once('int_libs/display/html.php'); $template = new template(); $template->title = 'Motherboards Identification Tools :: Motherboards.org'; $template->section = 'tools'; $template->description = 'identify a motherboard using bios string id and or part number'; $template->open_page(); ?>
Motherboards Identification :: Motherboards.org Tools
form_start(); $form .= '

Tool 1 Search By Partial BIOS String ID

'; $form .= '

→ Returns manufacturer

'; $form .= $f->f_input('text', 'bios_string', ''); $form .= $f->f_input('Submit', 'biosidpartial', 'Go'); $form .= $f->form_end(); echo '
'; echo $form; if($_REQUEST["biosidpartial"]) { $list = bios_string_id_partial($_REQUEST["bios_string"]); if($list) { $results = build_html_list($list, 'ul', 0); echo '

Results for ' . $_REQUEST["bios_string"] . '

'; echo $results; } echo '

' . count($list) . ' results found.

'; } ?>

Enter the BOLD portion of your BIOS string as in the examples below.

'; $f2 = new form('/tools/moboidtools.html', 'POST'); $form2 = $f2->form_start(); $form2 .= '

Tool 2 Search By BIOS String ID

'; $form2 .= '

→ Returns motherboard and manufacturer

'; $form2 .= $f2->f_input('text', 'bios_string_full', ''); $form2 .= $f2->f_input('Submit', 'biosidfull', 'Go'); $form2 .= '

You may search using a complete BIOS String ID or just a portion of it.

'; $form2 .= $f2->form_end(); echo '
'; echo $form2; if($_REQUEST["biosidfull"]) { $list = bios_string_id_full($_REQUEST["bios_string_full"]); if($list) { $t = new table(); $t->set_table_class('tablemobot'); $head_array = array('Manufacturer', 'Part Number', 'BIOS String'); $t->set_thead($head_array); $t->set_tfoot('Powered by MOBOT', 3); $ii = count($list); for($i = 0; $i < $ii; $i++) { $t->set_tbody($list[$i]); } echo '

Results for ' . $_REQUEST["bios_string_full"] . '

'; $t->show_table(); } echo '

' . count($list) . ' results found.

'; } echo '
'; ?> form_start(); $form1 .= '

Tool 3 Search By Part Number

'; $form1 .= '

→ Returns motherboard and manufacturer

'; $form1 .= $f1->f_input('text', 'name', ''); $form1 .= $f1->f_input('Submit', 'partnum', 'Go'); $form1 .= $f1->form_end(); echo '
'; echo $form1; if($_REQUEST["partnum"]) { $list = partnum_results($_REQUEST["name"]); if($list) { $t = new table(); $t->set_table_class('tablemobot'); $head_array = array('Manufacturer', 'Part Number'); $t->set_thead($head_array); $t->set_tfoot('Powered by MOBOT', 2); $ii = count($list); for($i = 0; $i < $ii; $i++) { $t->set_tbody($list[$i]); } echo '

Results for ' . $_REQUEST["name"] . '

'; $t->show_table(); } echo '

' . count($list) . ' results found.

'; } echo '
'; echo '
'; echo '

For more information please read our BIOS String ID article.

'; echo '
'; echo '
'; $template->close_page(); ?>