php给$
在调试一个程序的时候发现很奇怪的现象,post传过来的值再某些地方为空,先看下面的代码 1 ? php 2 if ( $_POST ['submit'] == 'Add' ){ 3 if ( $_POST ['type']='movie' $_POST ['movie_type'] == '' ){ 4 header ('Location:form4.php' ); 5 } 6 } 7 ? 8 h
在调试一个程序的时候发现很奇怪的现象,post传过来的值再某些地方为空,先看下面的代码
<span> 1</span> <span>php </span><span> 2</span> <span>if</span>(<span>$_POST</span>['submit'] == 'Add'<span>){ </span><span> 3</span> <span>if</span>(<span>$_POST</span>['type']='movie' && <span>$_POST</span>['movie_type'] == ''<span>){ </span><span> 4</span> <span>header</span>('Location:form4.php'<span>); </span><span> 5</span> <span> } </span><span> 6</span> <span>} </span><span> 7</span> ?> <span> 8</span> <span> 9</span> <span>10</span> <title>Multipurpose Form</title> <span>11</span> <span>12</span> <span>13</span> <span>php </span><span>14</span> <span>15</span> <span>if</span>(<span>$_POST</span>['submit'] == 'Add'<span>){ </span><span>16</span> <span>echo</span> '<h1 id="Add-span-ucfirst-span-span-POST-span-type">Add '.<span>ucfirst</span>(<span>$_POST</span>['type']).'</h1>'<span>; </span><span>17</span> ?> <span>18</span>
Search for '.ucfirst($_POST["type"]).'
'; 60 echo 'Searching for '.$_POST["name"].'...
'; 61 } 62 63 if(isset($_POST['debug'])){ 64 echo ''<span>; </span><span>65</span> <span>print_r</span>(<span>$_POST</span><span>); </span><span>66</span> <span>echo</span> '
在第29行是要根据上一个页面传递过来的值来输出信息的,但是即使传递过来的值是movie,还是没有输出想要的值,我我在很多地方都添加了echo($_POST['type']);这一句话发先在代码最顶端还能输出movie 的,第二行下面还是能够输出,就是在第三行下面就没有值了,这里你可能也发现错误了,if($_POST['type']='movie',这一句,本来是判断语句,结果少写了一个等号变成了赋值语句,初学者错误啊!!!!!!
正确的写法应该是if($_POST['type']=='movie' && $_POST['movie_type'] == '')
<br><br>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
