Re: How to change pictures everyday using php
- From: "NC" <nc@xxxxxxxxx>
- Date: 29 May 2005 19:07:33 -0700
Luigi Donatello Asero wrote:
>
> I am wondering how I could let change pictures on a page
> automatically everyday.
Let's say you have a directory called images, and in it you
have files named mm-dd.jpg (so, for example, there is file
for May 28 called 05-28.jpg). Now all you need to do is:
$picture = 'image/' . date('m-d') . '.jpg';
echo "<img src='$picture'>\r\n";
Cheers,
NC
.
- References:
- How to change pictures everyday using php
- From: Luigi Donatello Asero
- How to change pictures everyday using php
- Prev by Date: Re: How to change pictures everyday using php
- Next by Date: Re: interview questions for php developer
- Previous by thread: Re: How to change pictures everyday using php
- Next by thread: Re: How to change pictures everyday using php
- Index(es):