Click here to Skip to main content
15,892,927 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Here is the table:

Name: "TagValues"
Column1: "Tag"
Column2: "Values"
No Of Entries: 80

What is the query to read a specific row with a Tag value "CustomTag" I Tried these

PHP
$UserTag = "CustomTag";
$query = "SELECT Tag FROM TagValues WHERE Tag='$UserTag'"; //it didn't work
$query = "SELECT FROM TagValues WHERE Tag='$UserTag'"; //it didn't work
$query = "SELECT * FROM TagValues WHERE Tag='$UserTag'"; //it didn't work


Whats is the exact syntax?
Posted
Comments
Sergey Alexandrovich Kryukov 15-Oct-12 18:11pm    
"It did not work" is not informative. Explain what you want to do and what you observe exactly, and show more of relative code -- where do you substitute parameters in parametrized statement; how you do it?
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900