1
私はシンプルな検索ページを作成しようとしていますが、私は(変数が存在する場合など、適切かつ者を使用して)実際の検索文字列を作成する方法を100%わからないんだけど、ここのコードです:mysql検索文字列を動的に作成しますか?
if ($post) {
//get all search variables
$type = JRequest::getVar('type');
$classifications = JRequest::getVar('classifications', array(0), 'post', 'array');
$rating = JRequest::getVar('rating');
$status = JRequest::getVar('status');
$cterms = JRequest::getVar('cterms');
$clientid = JRequest::getVar('clientid');
$company = JRequest::getVar('company');
$address = JRequest::getVar('address');
$name = JRequest::getVar('name');
$surname = JRequest::getVar('surname');
$city = JRequest::getVar('city');
$state = JRequest::getVar('state');
$pcode = JRequest::getVar('pcode');
$country = JRequest::getVar('country');
//create search string
echo "SELECT * FROM #__db_clients "; <- the query is supposed to be done here.. it's in as echo because I was trying to spit it out before trying to make it run.. :)
} else {
echo 'There has been an error, please try again.';
};
私は(タイプ!= nullの場合は、検索タイプ= "どこでタイプ= 'X' ')を使用しようとしましたが、それは検索のために必要な場合は前と後の配置方法を理解できませんでした..センス?
エスケープを式に挿入する際には、必ず「$ v」にエスケープしてください。 –
@Bill Karwin - ありがとう、絶対に!彼のアプリケーションにどのエスケープ方法が当てはまるのかわからないので、私は答え(コードコメントと同様に)にメモを入れます。 – karim79
ありがとうございます、それは私のコードを手に入れるのを助けてくれるでしょう:)とても高く評価しました! – SoulieBaby