下面是我的代码,它从输入字段中的random.txt文件生成随机文本。
<?php
//Path of file
$myFile = "random.txt";
//Read file from array
$lines = file($myFile);
//Get number line of file
$lineTotal = count($lines);
//Remove 1 line (start from 0)
$count = $lineTotal-1;
//Get casual number
$number_casual = rand(0
当一张图片被上传到网站时,我想在图片下面显示它被上传的月份。我在数据库中有一个时间戳字段。
我能从时间戳中得到月份吗?如果可能,我该怎么做?
我试着用下面的代码来实现
<?php $query="SELECT * FROM magimgdes ORDER BY id DESC, time DESC " ;
$result=mysql_query($query) OR DIE(mysql_error());
while($row=mysql_fetch_array($result)){
$value1=$row['image'];
我有一个数据库包含电影名称,他们的描述和他们的封面图片。封面图片字段类型是blob,问题是我无法从数据库中检索它。我想在他们旁边的封面图片上显示电影的名字…怎么做..这是我的代码..
<?php
include ("php/connection.php");
$ID = $_GET['id'];
$listmovies = "SELECT * FROM movies where Genres LIKE '%$ID%'";
$result = mysql_query($listmovies);
while ( $row =