以下是错误消息。代码在不同的网站上工作,但是当我在另一个网站上使用它并更改了列名时,变量是未定义的?在我问之前,我试着去研究。我使用了isset和content =
仍然没有运气。
注意:未定义变量:电影中 在线 /Applications/XAMPP/xamppfiles/htdocs/movies/films.php 的 168
<?php if( !empty($_GET['action']) && $_GET['action'] == "edit" ) { ?>
<legend>Editing Film Listing</legend>
<form name="frmEditFilm" action="films.php?action=edit" method="POST">
<input type="hidden" name="film_id" value="<?php echo $film['film_id']; ?>">
<label for="film_title">Film Title</label>
<input type="text" name="film_title" class="form-control" value="<?php echo $film['title']; ?>">
<label for="film_release">Film Release</label>
<input type="text" name="film_release" class="form-control" value="<?php echo $film['release_year']; ?>">
<label for="film_description">Film Description</label>
<textarea name="film_description" class="form-control"/><?php echo $film['description']; ?></textarea>
<button type="submit" class="btn btn-info">Update Film</button>
</form>
<?php } ?>