Display search result
Posted on
16th Feb 2014 07:03 pm by
admin
Hi!
I have a SQL database with information about albums and track (music).
Did you know?Explore Trending and Topic pages for more stories like this.
This is where the user inputs a search term(entersearch.php): Code: <form name="form" action="displaysearchalbum.php" method="get">
<input type="text" name="getsearch" />
<input type="submit" name="Submit" value="search album" />
</form>
<br />
<h2>Search for track</h2>
<form name="form" action="displaysearchtrack.php" method="get">
<input type="text" name="getsearch2" />
<input type="submit" name="submit2" value="search track" />
</form>
And this is where the search result is displayed with links to a pages with more information about the album the user is interested in.
Code: <?php
// Get the search variable from URL
$var = @$_GET['getsearch'] ;
$trimmed = trim($var); //trim whitespace from the stored variable
// rows to return
$limit=20;
// check for an empty string and display a message.
if ($trimmed == "")
{
echo "<p>Please enter a search...</p>";
exit;
}
// check for a search parameter
if (!isset($var))
{
echo "<p>We dont seem to have a search parameter!</p>";
exit;
}
//connect to your database
mysql_connect("xxx","xxx","xxx"); //(host, username, password)
//specify database
mysql_select_db("xxx") or die("Unable to select database"); //select which database we're using
// Build SQL Query
$result = mysql_query("SELECT albumid, albumname FROM album WHERE albumname like '%$trimmed%'");
//$query = "SELECT albumname FROM album WHERE albumname='$trimmed'";
while ($row = mysql_fetch_array($result)) {
echo '<a href="albuminfo.php?albumid=' . $row[0] . '">' . $row[1] . '</a>';
echo "<p></p>";
}
?>
My problem is that I don't know how to transfer the information from displaysearchalbum.php to albuminfo.php about which album the information is going to be displayed. Preferably I would have a variable in albuminfo.php which contains the albumid in interest. I am a novice in php but think that the code I have so far written is working. Any ideas about necessary changes in the code I wrote or what kind of code I need for albuminfo.php would be helpful. I have not yet written any code for albuminfo.php because I am not quite sure how to.
No comments posted yet
Your Answer:
Login to answer
342
43
Other forums
Only add new information from XML to MySQL
What I am doing, is taking a xml file, and adding the values to a database. However, what I want to
Table control is disappearing from Screen
Hi Experts,
I have a screen with multiple table control(TC). Each table control has two c
Can't find the problem (no error message)!
OK, here's the deal. This code is really weirdly formatted (sorry!) and hard to understand, so I'm g
This is driving me nuts!
This insert query looks to be alright, however I get this error:
QuoteYou have an error in yo
checkbox update
I am having a brain fart right now and i cant remember how to do this. if anyone could help that wou
cPanel API
Hi Guys,
Need a little guidance. I'm trying to get my script to communicate with cPanel (or W
Share admin accross websites
I'm using .net memberships and roles in one of my sites, but I need to be able to share logins and p
Mysql query, two times?
Hello to all,
I'm new to php coding and i like it alot. I need help with some noob stuff.
update post issues
I am trying to create an update to a post function, while the update does occur, the page routing an
Problems with returning true or false in eval()'d code
Hi guys,
Would appreciate some help with a problem when running eval() on a function that sho