ciao a tutti ho scaricato in rete un tema di wordpress e lo sto modificando per adattarlo al mio sito che non è wordpress
questo è il form per la ricerca che era gia presente:
Codice PHP:
<div id="templatemo_header_panel">
<div id="templatemo_header_section">
<div id="templatemo_title_section">SITENAME</div>
<div id="templatemo_search_section">
<form method="get" action="#">
<input type="radio" name="search" value="thissite" />this site <input type="radio" name="search" value="theweb" checked="checked" /> the web
<input type="text" name="q" size="10" id="searchfield" title="searchfield" />
<input type="submit" name="Search" value="Search" alt="Search" id="searchbutton" title="Search" />
</form>
</div>
</div>
</div>
e questo è il mio form di login:
Codice PHP:
echo "<form action=\"{$path}login.php\" method=\"post\">\n";
echo "
Nickname:
\n";
echo "<input name=\"loguid\" maxlength=\"25\" title=\"nick\"/>
\n";
echo "Password:
\n";
echo "<input name=\"logpwd\" type='password' maxlength=\"25\" title=\"password\"/>
\n";
echo "<input type='checkbox' name='ric' value='1' /> Ricordami
\n";
echo "<input type=\"submit\" value=\"Login\" />\n";
echo "</form>\n";
come posso adattare il primo codice come il secondo che mi serve???
grazie