SELECT product.id, product.name, characteristic.id, characteristic.value
FROM product_characteristic_link
LEFT JOIN product ON product_characteristic_link.product_id = product.id
LEFT JOIN characteristic ON product_characteristic_link.characteristic_id = characteristic.id
WHERE characteristic.value = 'white'
this.calc_tablo.setLine(inputData);
при этом inputData не объявлена.//например так
switch (location.hash) {
case '#phone':
filter = 4;
break;
case '#notebook':
filter = 7;
break;
case '#toys':
filter = 135;
break;
default:
filter = 0;
location.hash = '#default_anchor'
}
echo '<pre>' . var_export($_POST, true) . '</pre>';
http://www.google.ru/search?q=Как+подменить+referer-a+с+параметрами&ie=UTF-8
Marks messages listed in msg_number for deletion. Messages marked for deletion will stay in the mailbox until either imap_expunge() is called or imap_close() is called with the optional parameter CL_EXPUNGE.
$servers = array(); // создаем пустой массив
// помните, что mysql_query уже не работает в php верси 7 и выше.
// Пора переходить на mysqli, PDO или что-нибудь другое.
$s_srv = mysql_query("SELECT * FROM ms_gameservers order by id LIMIT 0,2");
while($srv = mysql_fetch_assoc($s_srv))
{
// каждую запись дописываем в массив
$servers[] = array('cssource', $srv['s_ip'], $srv['s_port']);
}