View Single Post
ישן 15-12-05, 17:08   # 1
חבר13
חבר פורום
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 37
הודעות: 310

חבר13 לא מחובר  

בעיה בקוד קצת עזרה תודה

קוד:
<?
include "panel/config.php"; 
$searchwords = $_GET['sw'];

$resarcc = mysql_query("SELECT * FROM users WHERE username like '%$searchwords%' OR icq like '%$searchwords%'"); 

while(@($r=mysql_fetch_array($resarcc))) {
$username=$r["username"];
$id=$r["id"];
$email=$r["email"];
$location=$r["location"];
$icq=$r["icq"];

echo"
<table border='0' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='65%'>
  <tr>
    <td width='20%'>
    <p align='center'>$username</td>
    <td width='80%'><font face='Arial'>
    <b>
<span style='font-size: 9pt'><span class='style1'>Email</span>:<a href='mailto:$email'>$email</a></span></b></font><font face='Arial' color='#1875E7'>
        <br>
</font><font face='Arial'><span style='font-size: 8pt'><span class='style2'>ICQ</span></span></font><font face='Arial' color='#1875E7'><span style='font-size: 8pt'><font color='#808080'>:$icq</font></span><br>
</font><font face='Arial'><span class='style5'>location:$location</span></font></td>
  </tr>
</table>
<hr style='COLOR: #9cb8d0' SIZE='1'><br>
";
}
?>
<form action='search.php' method='get' dir='rtl'>
<TABLE align=right style='width:100%;' height='8'>
  <tr>
    <TD dir=rtl height='1' width='13%'>
  <b><font face='arial' size='2'><span lang='he'>find user</span>: </font></b>
  </TD><TD dir=rtl height='1'>
  <input id='qr_quickreply' tabIndex='4' name='sw' value='<?=$searchwords?>' size='26' style='float: right'>
  <INPUT type=submit value=Goooo!></TD>
  </tr>
  </TABLE>
</FORM>
מה הבעיה פה חח
זה לא מציג לי שום שגיאה זה פשוט לא מחפש לי את המשתמשים
__________________
  Reply With Quote