Topic: Has anybody seen ...
no photo
Tue 06/28/11 07:21 PM
My mind? I know I left it here somewhere .. *peeks behind couch*

no photo
Tue 06/28/11 07:23 PM
have you picked your nose lately ??

Suzanne20's photo
Tue 06/28/11 07:29 PM
It's probably somewhere with mine...took off about a week ago. I put up signs and everything. I think it's a conspiracy.

no photo
Tue 06/28/11 07:40 PM

have you picked your nose lately ??


Why, you hungry? tongue2

no photo
Tue 06/28/11 07:41 PM


have you picked your nose lately ??


Why, you hungry? tongue2
nO grumble ...just thought you might have accidentally pulled you brain out :tongue:

no photo
Tue 06/28/11 07:48 PM

nO grumble ...just thought you might have accidentally pulled you brain out :tongue:


Hee hee .. the brain is still there, it's just my mind that I lost. what

no photo
Tue 06/28/11 07:49 PM


nO grumble ...just thought you might have accidentally pulled you brain out :tongue:


Hee hee .. the brain is still there, it's just my mind that I lost. what
ahhh I see, said the blind man shades

no photo
Tue 06/28/11 07:55 PM
my pen? I had it here a second ago.

no photo
Tue 06/28/11 08:02 PM

my pen? I had it here a second ago.




Is this it?

no photo
Tue 06/28/11 08:04 PM
thank you

no photo
Tue 06/28/11 08:06 PM


laugh rofl bigsmile

no photo
Tue 06/28/11 08:15 PM


Maybe thats what happened to it?


AndyBgood's photo
Tue 06/28/11 08:29 PM
Are those your marbles i found???


no photo
Tue 06/28/11 08:33 PM

Are those your marbles i found???


Thanks, I thought I heard rattling somewhere ... whew.

Maybe thats what happened to it?


You know, I think it is. laugh

Totage's photo
Tue 06/28/11 08:37 PM

My mind? I know I left it here somewhere .. *peeks behind couch*



CREATE TABLE users (fname VARCHAR(30), lname VARCHAR(30), info BLOB);

INSERT INTO users VALUES ( "Jim", "Jones", "In his spare time Jim enjoys biking, eating pizza, and classical music" ), ( "Peggy", "Smith", "Peggy is a water sports enthusiast who also enjoys making soap and selling cheese" ),( "Maggie", "Martin", "Maggie loves to cook itallian food including spagetti and pizza" ),( "Tex", "Moncom", "Tex is the owner and operator of The Pizza Palace, a local hang out joint" )


<h2>Search</h2>
<form name="search" method="post" action="<?=$PHP_SELF?>">
Seach for: <input type="text" name="find" /> in
<Select NAME="field">
<Option VALUE="fname">First Name</option>
<Option VALUE="lname">Last Name</option>
<Option VALUE="info">Profile</option>
</Select>
<input type="hidden" name="searching" value="yes" />
<input type="submit" name="search" value="Search" />
</form>

<?
//This is only displayed if they have submitted the form
if ($searching =="yes")
{
echo "<h2>Results</h2><p>";

//If they did not enter a search term we give them an error
if ($find == "")
{
echo "<p>You forgot to enter a search term";
exit;
}

// Otherwise we connect to our Database
mysql_connect("mysql.yourhost.com", "user_name", "password") or die(mysql_error());
mysql_select_db("database_name") or die(mysql_error());

// We preform a bit of filtering
$find = strtoupper($find);
$find = strip_tags($find);
$find = trim ($find);

//Now we search for our search term, in the field the user specified
$data = mysql_query("SELECT * FROM users WHERE upper($field) LIKE'%$find%'");

//And we display the results
while($result = mysql_fetch_array( $data ))
{
echo $result['fname'];
echo " ";
echo $result['lname'];
echo "<br>";
echo $result['info'];
echo "<br>";
echo "<br>";
}

//This counts the number or results - and if there wasn't any it gives them a little message explaining that
$anymatches=mysql_num_rows($data);
if ($anymatches == 0)
{
echo "Sorry, but we can not find an entry to match your query<br><br>";
}

//And we remind them what they searched for
echo "<b>Searched For:</b> " .$find;
}
?>



IDK if that helps or not, but I'm still going to post it.

no photo
Wed 06/29/11 01:34 AM
totage's post. look above.

Totage's photo
Wed 06/29/11 02:37 AM
You may not find your mind, but you'll find Jim Jones!