addiosamigo
iPF Noob
I need some help, trying to add my CSS style sheet to a script I have written:
anyone know how I can do this??
Thanks
PHP:
<?php$search = $_POST ['Search'];$file = 'Right Click for options';
mysql_connect("localhost", "root", "") or die ("Error Connecting to Database");mysql_select_db("testing") or die('Error');$data = mysql_query("SELECT * FROM Files WHERE FileName OR KeyWords LIKE '%".$search."%'")or die('Error');
include 'mail.php';
Print "<h2>Search Results:</h2>";
Print "<table border cellpadding=3>";while($info = mysql_fetch_array( $data )){Print "<tr>";Print "<th>File:</th> <td>".$info['FileName'] . "</td> ";Print "<td><a href='".$info['PathToFile'] . "'>$file</a></td>";
}Print "</table>";
?>
anyone know how I can do this??
Thanks