Next: Quick start: how to
Up: Vibration Data Analysis
Previous: Preface
Contents
I remember that when I was first learning about signal processing
I found a book from the library and was intrigued that more than half
the book dealt with filtering. ``But filtering is such a simple thing,
surely there is more to signal processing than just filtering'' I
said to myself. As I have since learned, although the basic concept
of a filter is fairly straightfoward, the correct, efficient implementation
of a filter can be very subtle.
Subsections
$username="comment";
$password="12345aa";
$database="commentsdb1";
$link = mysql_connect('mechanicalvibrationc.domaincommysql.com', 'comments', $password);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
@mysql_select_db($database) or die( "Unable to select database");
$query = "SELECT * FROM `comments` WHERE URL='$URL'";
#echo "query is " . $query;
$result = mysql_query($query);
mysql_close();
while($row = mysql_fetch_array($result)) {
echo "User " . $row['Name'] . " Posted on " . $row['DateTime'];
echo "
";
echo $row['Comment'];
echo "
";
}
echo "
";
?>
Leave a comment on this page:
This work by Daniel Kiracofe (daniel dot kiracofe at gmail dot com)
is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.