我是jquery和PhP的新手,我一直在寻找解决问题的方法。 TLDR;基本上我正在尝试做的是每次按下按钮时加载一个新的随机图像。 现在,我有一个外部.php(imageload.php)文件,我将其包含在我的index.php页面中,该文件处理加载数据库并抓取随机图像。 ImageLoad.php文件的编码是
<?php require_once('Connections/RateItCelb.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_RateItCelb, $RateItCelb);
$query_BlueCeleb = "SELECT * FROM Celeb ORDER BY RAND() LIMIT 0,1";
$BlueCeleb = mysql_query($query_BlueCeleb, $RateItCelb) or die(mysql_error());
$row_BlueCeleb = mysql_fetch_assoc($BlueCeleb);
$totalRows_BlueCeleb = mysql_num_rows($BlueCeleb);
?>
`
基本上这就是我连接到我的数据库,抓取所有列,并抓取随机行的地方。所有列都是ID,name,url(&lt; - image url) 例如,一行看起来像“32,John Doe,www.domainhere.com/JohnDoe.jpg”
在我的index.php文件中,我当前显示图像的方式是通过嵌套在表格内的php脚本和看起来像这样的div标签:
<td colspan="2" rowspan="6" bgcolor="#25262A">
<div id="BlueCelebDiv">
<?php
echo "<img src=\"". $row_BlueCeleb['url'] ."\" alt=\"\" />";
?>
<p></p>
</div>
</td>
目前,该脚本部分工作,因为当我刷新页面时,每次都会加载一个随机图像。 但基本上我需要一个按钮,当按下时,将图像切换为新图像而不必刷新页面
我是否需要摆脱'回声'
感谢