<?php $name=$_REQUEST["name"]; $sname=$_REQUEST["sname"]; /* Соединяемся, выбираем базу данных */ $conn = mysql_connect("localhost", "Admin", "remoteroot") or die("Could not connect : " . mysql_error()); mysql_select_db("freeplace"); mysql_query('SET NAMES utf8'); /* Выполняем SQL-запрос */ $sql = "SELECT * FROM clients WHERE `name` LIKE '$name%' AND `sname` LIKE '$sname%'"; $result = mysql_query($sql) or die("Query failed : " . mysql_error());
/* Выводим результаты в html */ print "<table width='100%' align='center' border=0 cellpadding=0 cellspacing=0 rules='rows'>\n"; while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) { print "\t<tr>\n"; foreach ($line as $col_value) { print "\t\t<td align='center'>$col_value</td>\n"; } print "\t</tr>\n"; } print "</table>\n";
/* Освобождаем память от результата */ mysql_free_result($result);
/* Закрываем соединение */ mysql_close($conn); ?>
Теперь о ток как это все работает.
В current_clients.php в select я задаю значения начальных букв (имя, отчество, фамилия) и нажимаю "Показать". После чего, в сurrent_clients_script.php выводится результат. Как сделать так, что бы скрипт выполнялся в current_clients.php?
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
Alex&R
Есть две страницы: current_clients.php и current_clients_script.php.
current_clients.php:
сurrent_clients_script.php:
Теперь о ток как это все работает.
В current_clients.php в select я задаю значения начальных букв (имя, отчество, фамилия) и нажимаю "Показать". После чего, в сurrent_clients_script.php выводится результат. Как сделать так, что бы скрипт выполнялся в current_clients.php?
Link to comment
Share on other sites
12 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.