ciao Borgo,
ho fatto il motore di ricerca che mi trova gli utenti registrati .....
Io vorrei mettere un bottone richiedi l'amicizia ho direttamente nell'annuncio che mi si presenta ( mi piacerebbe ) oppure richiamandolo nell'id com eho provato nella pagina richiestedamicizia.php
Ho provato in tutti i modi ma non ci riesco.... (((
Mentre il motore funziona perfettamente
Se quando puoi mi aiuti grazie milleeeeee:O)
ho fatto il motore di ricerca che mi trova gli utenti registrati .....
PHP:
<?php
include 'dbc.php';
page_protect();
?>
<html>
<head>
<title>My Account</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="5" class="main">
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td width="160" valign="top">
<?php
/*********************** MYACCOUNT MENU ****************************
This code shows my account menu only to logged in users.
Copy this code till END and place it in a new html or php where
you want to show myaccount options. This is only visible to logged in users
*******************************************************************/
if (isset($_SESSION['user_id'])) {?>
<div class="myaccount">
<p><strong>My Account</strong></p>
<a href="myaccount.php">My Account</a><br>
<a href="mysettings.php">Settings</a><br>
<a href="logout.php">Logout </a>
<p>You can add more links here for users</p></div>
<?php }
if (checkAdmin()) {
/*******************************END**************************/
?>
<p> <a href="admin.php">Admin CP </a></p>
<?php } ?>
<p> </p>
<p> </p>
<p> </p></td>
<td width="732" valign="top"><p> </p>
<h3 class="titlehdr">Welcome <?php echo $_SESSION['user_name'];?></h3>
<?php
if (isset($_GET['msg'])) {
echo "<div class=\"error\">$_GET[msg]</div>";
}
?>
<p>This is the my account page</p>
<?php
$db_host = "localhost";
$db_user = "root";
$db_password = "root";
$db_name = "yes";
//connetto il database
$db = mysql_connect($db_host, $db_user, $db_password) or die ('Errore durante la connessione');
mysql_select_db($db_name, $db) or die ('Errore durante la selezione del db');
// recuperiamo il valore ricerca inviato con get
$ricerca = $_GET['ricerca'];
// vediamo se � stato inviato, e quindi uguale a ok
if ( $ricerca == 'ok' ) {
// recuperiamo ora cerca inviato con post
$cerca = $_POST['cerca'];
// vediamo se � stato compilato il campo
if ( $cerca == TRUE && $cerca != "" ) {
// ora vediamo se supera i tre caratteri
if ( strlen($cerca) >= 3 ) {
// ora depuriamo la stringa da cercare sul database
$cerca = mysql_escape_string(stripslashes($cerca));
// ora possiamo effettuare la nostra ricerca sul db, state attenti alla sintassi
$query = "SELECT * FROM users WHERE id LIKE '%$cerca%' OR full_name LIKE '%$cerca%' ";
$risultato = mysql_query($query) or die (mysql_error());
$risposta = mysql_query($query) or die ("Utilizza termini pi� specifici!");
$dentro_la_query= mysql_fetch_assoc($risposta);
if ( $dentro_la_query == TRUE ) {
while($row= mysql_fetch_assoc($risultato)) {
$id = $row['id'];
$user_id = $row['user_id'];
$full_name = $row['full_name'];
// stampiamo i nostri dati
echo" <table width='100%'>";
echo" <tr>";
echo" <p class='three'><td colspan='3'> <a href=\"http://localhost:8888/yes/richiestedamicizia.php?id=$id\"/>$full_name</a></td>";
echo" </tr>";
echo" <tr>";
echo" <td width='14%' bgcolor='#f4f9fd'> <a href=\"http://localhost:8888//rannunci.php?id=\"/><img src='' name='nome_file' alt'' width='200' height='154' /></a></td>";
echo" <td width='45%' bgcolor='#f4f9fd'><table width='100%'>";
echo" <tr>";
echo" <td></td>";
echo" </tr>";
echo" <tr>";
echo" <td></td>";
echo"</tr>";
echo" <tr>";
echo" <td> </td>";
echo" </tr>";
echo" </table></td>";
echo" <td width='31%' bgcolor='#f4f9fd'><br /><br /><br /></p></td>";
echo"</tr>";
echo"</table>";
}
} else {
echo "Nessun temine alla ricerca trovato";
}
} else {
echo "Devi inserire almeno 3 caratteri";
}
} else {
echo "Non hai compilato il modulo ricerca";
}
}
?>
</td>
<td width="196" valign="top"> </td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
</table>
</body>
</html>
Io vorrei mettere un bottone richiedi l'amicizia ho direttamente nell'annuncio che mi si presenta ( mi piacerebbe ) oppure richiamandolo nell'id com eho provato nella pagina richiestedamicizia.php
Ho provato in tutti i modi ma non ci riesco.... (((
Mentre il motore funziona perfettamente
Se quando puoi mi aiuti grazie milleeeeee:O)