Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial PHP POST上传,无法读取上传的字符串

PHP POST上传,无法读取上传的字符串

Jun 23, 2016 pm 02:02 PM

本地c#写的 用WebClient类http://1.liuruitao.sinaapp.com/test.php?name={0}通过这个url上传的,网页那边

 if($_SERVER['REQUEST_METHOD']=="POST")   
{
  // $s=json_encode($_post)

    $s=$_GET["name"];
     echo "hello world!!";
    echo $_POST["name"];
    $conn=mysql_connect(SAE_MYSQL_HOST_M.':'.SAE_MYSQL_PORT,SAE_MYSQL_USER,SAE_MYSQL_PASS);
    if(!$conn)
    die("connect fail".mysql_error());
     mysql_select_db('app_liuruitao',$conn);
     $sql = "insert into $db values ('3344556677',$s,3,'4',5,'6','7','8','9')";
     mysql_query($sql,$conn);//借SQL语句插入数据
    mysql_close();//关闭MySQL连接
   echo "insert success";
}
就是无法正确获取上传的name里面的字符串插入到数据库中,大家帮帮忙谢谢了


回复讨论(解决方案)

echo $_POST["name"];改为print_r($_REQUEST);试一下

是无法获取值还是无法插入值?

是无法获取值还是无法插入值? 感觉是得到一个值了,但是这个值我不能确定是什么,他往数据库里面插不进去,好像是类型问题

echo $_POST["name"];改为print_r($_REQUEST);试一下 可以试不了啊代码放人家服务器上了,他执行我不能控制啊

http://1.liuruitao.sinaapp.com/test.php? name={0}
显然 name 应从 $_GET 数组获取
$s=$_GET["name"];

$sql = "insert into $db values ('3344556677',$s,3,'4',5,'6','7','8','9')";
估计问题在这里
一般建表时都有一个字段作为唯一的主键,而主键是不能赋重复值的,不然就不是唯一了
如果主键是自增的话,那么缺省字段列表就可能出错


http://1.liuruitao.sinaapp.com/test.php?name={0}
显然 name 应从 $_GET 数组获取
$s=$_GET["name"];

$sql = "insert into $db values ('3344556677',$s,3,'4',5,'6','7','8','9')";
估计问题在这里
一般建表时都有一……[/quote客户端发送的时候用的是POST发送的这个,还是用GET吗

http://1.liuruitao.sinaapp.com/test.php?name={0}
显然 name 应从 $_GET 数组获取
$s=$_GET["name"];

$sql = "insert into $db values ('3344556677',$s,3,'4',5,'6','7','8','9')";
估计问题在这里
一般建表时都有一……
我客户端用的是POST发送的,还是用GET吗接收

写在 url 中的就用 $_GET
$_POST 只获取 POST 方法传递的数据(除了上传文件)

写在 url 中的就用 $_GET
$_POST 只获取 POST 方法传递的数据(除了上传文件)
改成get也不行,那个数据库哪里可以插入的,我每次都是改一次值然后插入的,没有重复主键

$s=$_GET["name"];
echo $s;
exit();
这样有输出吗

$s=$_GET["name"];
echo $s;
exit();
这样有输出吗
没有,他只有在请求这个页面时这个程序才跳进去去读,没有上传请求他就进不了IF语句

$sql = "insert into $db values ('3344556677', $s,3,'4',5,'6','7','8','9')";
如果 $s 无值,那么实际执行的 SQL指令为
insert into 表名 values ('3344556677',,3,'4',5,'6','7','8','9')
显然是错误的
可通过
mysql_query($sql,$conn) or die(mysql_error());
知道这种情况是否存在
另外
$sql = "insert into $db values ('3344556677',$s,3,'4',5,'6','7','8','9')";
应写作
$sql = "insert into $db values ('3344556677', '$s',3,'4',5,'6','7','8','9')";
以免意外的发生

$s=$_GET["name"];
echo $s;
exit();
这样有输出吗
我sizeof($s)存数据库里面是1

$sql = "insert into $db values ('3344556677',$s,3,'4',5,'6','7','8','9')";
如果 $s 无值,那么实际执行的 SQL指令为
insert into 表名 values ('3344556677',,3,'4',5,'6','7','8','9')
显然是错误的
可通过
mysql_quer……
嗯,你说的这2个问题我已经改了,后边我sizeof($s)把结果存数据库结果是1从这里可以看出来什么问题不

本地服务器上可以正确获取发送的字符串,放在新浪哪里就不行了............看来应该是他们的平台有些规定吧...

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles