I want to get data from the database, but the database shows only one column name "image URL", so I get error.after it removes this column name from the query, than I received data.can someone help me how to get data from this column whose column name has a space.
my request
$res = mysqli_query( $con ,"select p_name,price,image URL,description from product where p_name REGEXP '$kws'");
when I remove the image url from this request, I got the result. I am using phpMyadmin.
I also tried the "image url", but the result suddenly appeared.
user3141708
source
share