I am a newbie in programming and I have a PHP code where I need to connect to the database. I have a line like this:
$where = 'module = "Card"';
$arrDateInfo = $objQuery->select($col, $table, $where);
However this part 'module = "Card"' is not right. I want to get only the data where the module is "Card". Having another table for the module_type is not an option. I cannot find anywhere how to declare a string inside a longer string. Please help!