Thread
:
Simple PHP Search Script
View Single Post
Mar 26th, 2008, 1:26 PM
#
2
big_k105
PFO Founder
Join Date: Mar 2004
Location: Fargo, ND
Posts: 1,603
Rep Power:
10
Re: Simple PHP Search Script
The problem is your not pulling the searching variable out of the POST data.
What you need to do first is this:
php Syntax
(
Toggle Plain Text
)
$searching
=
$_POST
[
'searching'
]
;
$searching = $_POST['searching'];
Put that above the if statement and it will work.
__________________
BIG K aka Kyle
Programming Forums
Kyle K Online
Please do not PM or email me programming questions. Post them in the forums instead.
big_k105
View Public Profile
Visit big_k105's homepage!
Find More Posts by big_k105