Seachr edit

Welcome.
I have a question where I can add code to a search engine to look for the titles of photos. I can not find anywhere these files to insert the code: (. Sorry for my bad vocabulary:)
Quote · 20 Jul 2008

If you coder, you simple can to found of result generation, and you simple will able to add here something like Titles as example

Quote · 21 Jul 2008

If you coder, you simple can to found of result generation, and you simple will able to add here something like Titles as example

This is my code which wants to put in a search engine to look for the titles of photos.search engine will be sought in the table sharePhotoFiles i medTitle

// program wyszukiwarki - search.php

// wyświetlenie nagłówka
echo'<h2>Wyniki wyszukiwania</h2>';
// usunięcie niepotrzebnych białych znaków
$_POST['phrase']=trim($_POST['phrase']);
// sprawdzenie, czy użytkownik wpisał dane
if(empty($_POST['phrase']))
// jeśli nie, to wyświetl komunikat i zakończ działanie skryptu
die('Formularz wypełniony niepoprawnie! Nie można wyświetlić wyników wyszukiwania!');
// jeśli jednak dane są wpisane poprawnie
else
{
// połączenie z bazą danych, NIE ZAPOMINJ USTAWIĆ WŁASNYCH DANYCH!
$base=mysqli_connect('host','uzytkownik','haslo','nazwa_bazy');
// skonstruowanie zapytania
// zwróć uwagę na operator Like - to on jest sercem całej aplikacji. Pozwala wyszukać dany ciąg w bazie danych
// jak zapewne zauważyłeś, przed frazą i po niej umieszczam znaki procenta %
// ten znak symbolizuje dowolny inny ciąg znaków, więc jest niezbędny do skutecznego wyszukiwania
// połaczenie operatorem Or pozwala na wyszukiwanie danego ciągu zarówno w nazwie, jak i opisie produktu
// UWAGA! Tutaj też nie zapomnij ustawić swoich danych!
$query="Select sharePhotoFiles From tabela Where medTitle Like '%{$_POST['phrase']}%' Or opis Like '%{$_POST['phrase']}%'";
// wysłanie zapytania do bazy danych
$result=mysqli_query($base,$query);
// ustalenie ilości wyszukanych obiektów
$obAmount=mysqli_num_rows($result);
// wyswietlenie ilości wyszukanych obiektów
echo'Znaleziono: '.$obAmount.'<br /><br />';
// wyświetlenie wyników w pętli
for($x=0;$x<$obAmount;$x++)
{
// przekształcenie danych na tablicę
$row=mysqli_fetch_assoc($result);
// wyświetlenie numeru identyfikacyjnego
echo $x+1;
echo '. ';
// wyświetlenie nazwy produktu
echo $row['pr_name'];
echo'<br />';
}
}
// zamknięcie połączenia
mysqli_close($base);
// koniec aplikacji
?>

Quote · 21 Jul 2008

Are you are Russian? :)

seems here all comments quite at Russian, retype your question in Russian if want.

PS - strange code you want to add :)

Quote · 22 Jul 2008
I am polish and polish the script is: D.
And you have any suggestions on how to do this? Needs help because he no longer know how and where to add the code to add: (. He wants to add the search engine users " search for pictures after the title " is a tutorial as they can to add to your search engine.
Quote · 22 Jul 2008

Maybe just look ready solutions, like http://www.expertzzz.com/Downloadz/view/3300  ?

Quote · 23 Jul 2008

You can just add template key into page of search, and process it in design.inc.php

function PageCode() {

Quote · 23 Jul 2008

where i seachr tamplate ?? i can't find Cry and what add to function PageCode() { ??? please me :( I have dolphin  1 month and can't good use dolphin.

Quote · 27 Jul 2008

Ohho :) , I begin to write first modifications after 5 days when I begin learn dolphin :)

so, lets open

search.php

here we see:

$_page['name_index'] = 4;

this is mean that template page number 4 is page for search,

goto open:

templates\tmpl_uni\page_4.html

here we can see next

<div class="by_nick_by_id">
__search_by_id__
__search_by_nick__
__search_by_tag__
</div>

<div class="clear_both"></div>

__page_main_code__

<div class="clear_both"></div>

so you able to change this all :)

difficult ?

Quote · 28 Jul 2008
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.