Io ho fatto questo fino addesso.Che verifica la connesione correta con la database
Codice:
$action = isset($_POST['action']) ? $_POST['action'] : (isset($_GET['action']) ? $_GET['action']:'');
if ($action == "read")
$id = isset($_POST['id']) ? $_POST['id'] : (isset($_GET['id']) ? $_GET['id']:0);
$sql = $db->sql_query("SELECT * FROM $prefix"._fjalor_italisht."");
//tabella databse _fjalor_italish
//Campo Tipo Collation Attributi Null Predefinito Extra Azione
//id int(11) No auto_increment
//fjale_tek varchar(255) utf8_general_ci No - Italiano
// fjale_nga varchar(255) utf8_general_ci No - Albanese
// statusi varchar(255) utf8_general_ci No - Tipo di parola
// mesazh text utf8_general_ci No - info
$fjalor_italisht = $db->sql_fetchrow($sql);
$italisht = $fjalor_italisht[fjale_tek];
$shqip = $fjalor_italisht[fjale_nga];
$id = $fjalor_italisht[id];
echo "<html>\n"
." <head>\n"
." <base href=\"".$BASEHREF."\" />\n";
echo "<link rel=\"stylesheet\" href=\"/themes/$ThemeSel/style/style.css\" type=\"text/css\">\n\n\n";
echo "<body>\n"
." Ricerca nella prima line database;<br>"
." <b>Shqip</b>$resultati $id $shqip <b>- Italisht</b> $italisht </font></td></tr>\n"
."<br />\n";
echo "</body>\n"
."</html>\n";
?>
//form che esegue una ricerca
<form action="index.php?name=Fjalor" method="post">
Cerca :
<input type="text" name="kerko">
<input name="submit" type="submit" value="Dergoje">
<font size="2">Search..</font><br>
</form>
</table></form>
EDIT: Ce lo fatta,
Se faccio la ricerca tra parola cercata e una delle due lingue, mi da il risultato.
Come faccio a confrontare la parola cercata con tutte e due lingue nello stesso tempo?
cioè: $cerca==$shqip==$italisht ?
Codice:
if($cerca==$shqip ){
echo "<html>\n"
." <head>\n"
." <base href=\"".$BASEHREF."\" />\n";
echo "<link rel=\"stylesheet\" href=\"/themes/$ThemeSel/style/style.css\" type=\"text/css\">\n\n\n";
echo "<body>\n"
." Ricerca nella prima line database;<br>"
." <b>Avete cercato per;</b> $cerca<br>\n"
."<br />In Albansese: $shqip \n"
."<br />In Italiano: $italisht \n"
."<br />Statusi: $statusi \n"
."<br />Mesazh: $mesazh \n"
."<br />Inserito nella database come parola numero:$id \n"
."<br />\n";
echo "</body>\n"
."</html>\n";
}else{
echo "<html>\n"
." <head>\n"
." <base href=\"".$BASEHREF."\" />\n";
echo "<link rel=\"stylesheet\" href=\"/themes/$ThemeSel/style/style.css\" type=\"text/css\">\n\n\n";
echo "<body>\n"
." Ricerca nella prima line database;<br>"
." <b>Vuoto</b> \n"
."<br />\n";
echo "</body>\n"
."</html>\n";
}