Re: How to change pictures everyday using php
- From: nemo <no_address@xxxxxxxxxxxxxxx>
- Date: Tue, 31 May 2005 16:03:29 GMT
On Tue, 31 May 2005 08:41:47 +0100, Geoff Berrow <blthecat@xxxxxxxxxxx>
wrote:
>I noticed that Message-ID: <482o91dsednsp9s89371earj09873c63fn@xxxxxxx>
>from nemo contained the following:
>
>>If you want to use the same piece of alt text, no matter which picture you
>>are displaying, don't save any alt text with the pictures, just choose what
>>you want as alt text and insert it as a constant into the script when
>>pulling the picture's details from the database
>
>It would be better to use alt="" in that case.
No, it wouldn't. alt="" would produce exactly that when the cursor is over
the picture "", blank, zero, zilch, nothing, notta sozzidge. There is no
point in storing nothing in a database, and even less in storing the same
thing for each record.
$alt="alt=\" This is my standard text.\" ";
$Query="select piccy from piccy_table where etc";
while ($Row=mysql_fetch_array ($Result))
{
$piccy=$Row[piccy_filename];
$piccy=$piccy.$alt;
)
.
- References:
- How to change pictures everyday using php
- From: Luigi Donatello Asero
- Re: How to change pictures everyday using php
- From: Geoff Berrow
- Re: How to change pictures everyday using php
- From: Luigi Donatello Asero
- Re: How to change pictures everyday using php
- From: Luigi Donatello Asero
- Re: How to change pictures everyday using php
- From: Joseph Melnick
- Re: How to change pictures everyday using php
- From: Luigi Donatello Asero
- Re: How to change pictures everyday using php
- From: Geoff Berrow
- Re: How to change pictures everyday using php
- From: Luigi Donatello Asero
- Re: How to change pictures everyday using php
- From: nemo
- Re: How to change pictures everyday using php
- From: Geoff Berrow
- How to change pictures everyday using php
- Prev by Date: Re: How to change pictures everyday using php
- Next by Date: html validator webservice
- Previous by thread: Re: How to change pictures everyday using php
- Next by thread: Re: How to change pictures everyday using php
- Index(es):
Relevant Pages
|