分享到: ------解决方案-------------------- SELECT Time,Title FROM User WHERE ID='传入的ID值' ------解决方案-------------------- $rs = mysql_query("SELECT Time,Title FROM User WHERE ID='$id'");
$row = mysql_fetch_assoc($rs);
echo $row['Time'], ' ', $row['Title']; ------解决方案--------------------
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn