在Mysql php中我需要使用
从数据库中获取所有数据 select * from table_name
和
echo value in page where id = 1
我有一个包含5列和6行的表,我需要根据列ID
来回显值对于exm。表
id -- name -- age -- dob -- remarks
1 -- rajju -- 20 -- 24/12/2015 -- good
2 -- prasad -- 15 -- 12/2/2010 -- bad
3 -- kranti -- 22 -- 05/05/2000 -- average
现在我需要选择所有数据库和
echo value like <`echo $name where id=1` > your health is <`echo $remarks where id=1`> better then <`echo $name where id=2`>
我的最终价值会是这样的
Dear Raju your health is good better then prasad
请有需要
答案 0 :(得分:1)
答案 1 :(得分:0)
您只需要与1个用户进行比较吗? 如果是这样,你可以这样做
$mainid = 1; //(you can get this value dynamically)
$compareid=2; //(you can get this value dynamically)
$result1=(SELECT * FROM table WHERE id=$mainid);
$result2=(SELECT * FROM table WHERE id=$compareid);
现在你可以使用值
<?php echo Hello $result1->name your health seems better than $result2->name.