fonksiyonu sql sorgusu içinde olur?

5 Cevap php
function get_tags_by_criteria($gender_id, $country_id, $region_id, $city_id, $day_of_birth=NULL, $tag_id=NULL, $thread_id=NULL) {

	$query = "SELECT tags.*
        FROM tags, thread_tag_map, threads
        WHERE thread_tag_map.thread_id = threads.id
        AND thread_tag_map.tag_id = tags.id

        AND threads.gender_id = $gender_id
        AND threads.country_id = $country_id
        AND threads.region_id = $region_id
        AND threads.city_id = $city_id
        AND tags.id LIKE '%$tag_id%'
        AND threads.id LIKE '%$thread_id%'";
        if(!$day_of_birth)
        {
            $query += "AND threads.min_day_of_birth <= '$day_of_birth AND threads.max_day_of_birth >= '$day_of_birth' ";
        }

        $query += "GROUP BY tags.name";

	$result = $this->do_query($query);
	return $result;
}

hiçbir $ day_of_birth bir argüman olarak geçirildiği takdirde ben sql içeriye 2 satır atlamak istiyorum. i kullandı:

$all_tags = $forum_model->get_tags_by_criteria(1, 1, 0, 0);

Bu sql bir hatayı döndürür neden acaba:

Couldn't execute query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '0' at line 1

5 Cevap

Eğer birleştirme kullanarak olmalıdır zaman ek (+=) operatörü kullanılarak konum (.=) operator.

SQL enjeksiyonu önlemek için, sizin de girdiler kaçan olmalıdır - mysql_real_escape_string() bakın

Ekteki dize " ve AND arasında beyaz boşluk eksik

Senin sorunun doğum tarihine göre bir ' dışarı bıraktı olmasıdır.

Change it to AND threads.min_day_of_birth <= '$day_of_birth' (Note closing ' and opening )
Also, as others have pointed out, you should write $query .= instead of $query += (note .)


You have a SQL Injection vulnerability; you should use parameters.
Remember Bobby Tables!

. = PHP string birleştirme için kullanılan değil, + =

Ayrıca sorguda tutucuları kullanabilirsiniz. Bir seçenek / parametre komut uygun sql koduna yer tutucu içeriğini ayarlar ayarlı ise aksi tutucu boş / null.

örneğin

function get_tags_by_criteria($gender_id, $country_id, $region_id, $city_id, $day_of_birth=NULL, $tag_id=NULL, $thread_id=NULL) {
  if ( !is_null($day_of_birth) ) {
    $day_of_birth = "AND ('$day_of_birth' BETWEEN threads.min_day_of_birth AND threads.max_day_of_birth)"
  }

  $query = "
    SELECT
      tags.*
    FROM
      tags, thread_tag_map, threads
    WHERE
      thread_tag_map.thread_id = threads.id
      AND thread_tag_map.tag_id = tags.id
      AND threads.gender_id = $gender_id
      AND threads.country_id = $country_id
      AND threads.region_id = $region_id
      AND threads.city_id = $city_id
      AND tags.id LIKE '%$tag_id%'
      AND threads.id LIKE '%$thread_id%'
      {$day_of_birth}
    GROUP BY
      tags.name
  ";

  $result = $this->do_query($query);
  return $result;
}

edit: akılda olası SQL enjeksiyon tutmak: daha önce belirtildiği gibi.