我的网站上有以下PHP代码,基本上可以访问从mysql表中提取信息的PHP脚本;
<?php include('event_connect.php'); ?>
是否可以在此脚本中包含对特定代码段的引用?
基本上我必须为个人下拉菜单创建39个不同的脚本,例如在“XXX”下拉菜单中,只显示标识符为“xxx”的记录。
我认为比创建39个脚本更容易(如果可能的话)只需在上面的代码中添加某种引用值,具体取决于它放置在页面中的位置。有点像VBA允许你从另一个人那里调用一个选定的函数......
编辑:这是我用来访问mysql数据库的PHP,添加了niet提供的代码 - 工作一个享受!谢谢。
<?php
//Get te CSS styling
// Make a MySQL Connection
mysql_connect("xxxx", "xxxx", "xxxx", "xxxx") or
die(mysql_error());
mysql_select_db("xxxx") or die(mysql_error());
// Retrieve all the data from the "xxxx" table
switch($section) {
case 1:
$result = mysql_query("SELECT * FROM `Events_List` WHERE `Value` = 'value_1' LIMIT 0 , 30") or die(mysql_error());
break;
case 2:
$result = mysql_query("SELECT * FROM `Events_List` WHERE `Value` = 'value_2' LIMIT 0 , 30") or die(mysql_error());
break;
// store the records of the "xxxx" table into $row array and loop through
while($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $name = $row['name'];
$Event = $row['Event'];
$Date = $row['Date'];
$Type = $row['Type'];
$Description = $row['Description'];
$Event = htmlspecialchars($row['Event'],ENT_QUOTES);
$Date = htmlspecialchars($row['Date'],ENT_QUOTES);
$Type = htmlspecialchars($row['Type'],ENT_QUOTES);
$Description = htmlspecialchars($row['Description'],ENT_QUOTES);
echo " <div id='ev_con'>
<div id='ev_img'> </div>
<div id='Event'> $Event </div>
<div id='Date'> $Date </div>
<div id='Type'> $Type </div>
<div id='Description'> $Description </div>
</div>";}
?>
这会运行一个查询,但无法运行多个查询..
答案 0 :(得分:0)
也许是这样的?
$section = 1;
include("event_connect.php");
在你的event_connect文件中:
switch($section) {
case 1:
// do things
break;
case 2:
// do other things
break;
// ...
}
答案 1 :(得分:0)
怎么样......
function get_event_connect($eventID){
switch($eventID){
case "1" :
// output code
break;
case "2" :
//output code
break;
}
}
$eventID = "1";
echo get_event_connect($eventID);