need to show the data that is fetch from sqlserver
in a textbox i press r means i need to retrieve data from sqlserver
raj
rani
ravi
ragu
i need like this
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
sudipta sanyalPosted Jun 20, 2014, 2:49 AM
selvi subramanianPosted Jun 20, 2014, 1:58 AM
Khan Abrar AhmedPosted Jun 19, 2014, 7:09 AM
SELECT * FROM dbo.Users AS u WHERE FirstName LIKE 'r'+'%'
Kedar PawgiPosted Jun 19, 2014, 6:21 AM
$courseSql = "select Name,address, city from city where name LIKE '%" . $sItem ."%' ";
here $sItem is the value passed from textbox for search in your case is "r",
Hope this solves your problem