What's new
Apple iPad Forum 🍎

Welcome to the Apple iPad Forum, your one stop source for all things iPad. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

anyone know PHP?

addiosamigo

iPF Noob
Joined
Oct 25, 2010
Messages
955
Reaction score
15
I need some help, trying to add my CSS style sheet to a script I have written:

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
 

Most reactions

Top