gpt4 book ai didi

php - php 中发布日期出现错误

转载 作者:行者123 更新时间:2023-11-29 07:17:40 26 4
gpt4 key购买 nike

目前,我正在使用 PHP 来创建一个在线商店。

我有我的订单表。

<?php
$itemno = $_POST['itemno'];
$qty = $_POST['qty'];
$price = $_POST['price'];
$orderno = rand(0,100);
$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$streetaddress= $_POST['streetaddress'];
$city = $_POST['city'];
$state = $_POST['state'];
$postcode2 = $_POST['postcode2'];
$email = $_POST['email'];
$phone = $_POST['phone'];

$dat=date("Y-m-d");

include_once('config.php');
$save_items = mysql_query("INSERT INTO orders (itemno,qty,price,orderno,firstname,lastname,streetaddress,city,state,postcode2,email,phone,dat)VALUES('$itemno','$qty','$price','$orderno','$firstname','$lastname','$streetaddress','$city','$state','$postcode2','$email','$phone','$dat')");

if($save_items){
echo '1';
}else{
echo '0';
}
?>

我需要帮助的两件事:

  • 我想访问订单 View 页面顶部的最新日期订单。这是我的 mysql“从订单中选择 * ORDER BY dat ”。我应该做什么改变才能访问最新的日期订单。

  • 我的电话号码有误,如“2147483647”。

最佳答案

1) 我想访问订单 View 页面顶部的最新日期订单。这是我的 mysql“从订单中选择 * ORDER BY dat ”。我应该做什么改变才能访问最新的日期订单。

您可以通过表id订购:

“从订单中选择 * ORDER BY id DESC” - 这样您将首先获得最新订单

2) 我的电话号码有误,如“2147483647”。

如果 $phone 是整数列,则从 $phone 中删除单引号

$save_items = mysql_query("INSERT INTO orders (itemno,qty,price,orderno,firstname,lastname,streetaddress,city,state,postcode2,email,phone,dat)VALUES('$itemno','$qty','$price','$orderno','$firstname','$lastname','$streetaddress','$city','$state','$postcode2','$email',$phone,'$dat')");

关于php - php 中发布日期出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37319527/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com