php - How to alphabetical book title using query -


i want alphabetical a-z using query , code

$user_query=mysqli_query($dbcon,"select * book book_title regexp '^[^a-za-z]' ")or die(mysqli_error($dbcon)); 

but didn't worked.

database table

you can use order alphabetical order-

select * `book` order book.book_title asc 

Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -