新闻板块的内容提交

Original 2019-04-08 10:53:34 192
abstract:<?php //引入文件 内容提交include_once("functions/database.php"); $news_id = $_GET["news_id"]; get_connection(); $result_news = mysql_query("select * from news w

<?php

 //引入文件 内容提交

include_once("functions/database.php");

 

$news_id = $_GET["news_id"];

 

get_connection();

 

$result_news = mysql_query("select * from news where news_id=$news_id");

 

$result_category = mysql_query("select * from category");

 

close_connection();

 

$news = mysql_fetch_array($result_news);

 




Correcting teacher:查无此人Correction time:2019-04-08 16:05:31
Teacher's summary:完成的不错。下次把代码注释。。继续加油。

Release Notes

Popular Entries