Posts by itaete1
-
-
There is a way to correct these small mistakes in quotation marks and line breaks that are wrong, but correcting them by hand takes time. Thanks. Everything decoded as promised
Example:$sql_cart = 'SELECT c.*,' . "\r\n\t\t\t" . 'p.name AS product,' . "\r\n\t\t\t" . 'p.price,' . "\r\n\t\t\t" . 'p.image_path' . "\r\n\t\t\t" . 'FROM `cart_list` c' . "\r\n\t\t\t" . 'INNER JOIN product_list p ON c.product_id = p.id' . "\r\n\t\t\t" . 'WHERE customer_id = \'' . $customer_id . '\'';
-