好的,所以我有一个PHP表单,我动态添加到记录集。其中一个字段是图像字段。我想做的是当它留空时我希望它插入默认图像。我会使用if else语句来说像
if(image==null){
get(logo.jpg)}
else post image
但是我不确定如何在PHP中做任何想法?
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO Adventures (Image, Activity, Location, `Date`) VALUES (%s, %s, %s, %s)",
GetSQLValueString($_POST['Image'], "text"),
GetSQLValueString($_POST['Activity'], "text"),
GetSQLValueString($_POST['Location'], "text"),
GetSQLValueString($_POST['Date'],`enter code here` "text"));
mysql_select_db($database_Mat, $Mat);
$Result1 = mysql_query($insertSQL, $Mat) or die(mysql_error());
这是表单的代码。
答案 0 :(得分:0)
在$ _POST上使用isset
并另外检查字符串长度:
if (!isset($_POST['image']) || strlen(trim($_POST['image']))==0)
$image = 'image.png';
else
$image = $_POST['image'];
然后将$image
添加到数据库中。