|
buzardbuck 134
| Posté : 27-09-2004 13:46
ya plus simple tu fais une image cliquable avec l'éditeur tu rajoute le lien de "lire la suite...."
regarde sur mon site tu verras |  Profil www
|
|
axel 10065
| |
Tribal-Dolphin 4374
| Posté : 28-09-2004 07:35
Tu retire une ligne d'une fonction qui en à 40, comment veut tu que ça marche ?
Garde la fonction et supprime la partie de recherche des attributs. |  Profil
|
|
oim 1453
| Posté : 28-09-2004 10:37
Je n'ai juste pas mis cette fonction
function img_extractor($url){
$fichier = file($url);
$chaine = implode("", $fichier);
return img_extractor_string($chaine);
}
Mais c'est pour accéder à un fichier distant, j'en ai pas besoin ? |  Profil www
|
|
oim 1453
| Posté : 28-09-2004 17:31
En fait j'ai trouvé une façon plus simple, utiliser l'ephemeride par contre il faudrait changer la fonction pour afficher par jour par aléatoire :
function ephemblock() {
global $gmt;
$eday=date("d",time()+($gmt*3600));
$emonth =date("m",time()+($gmt*3600));
$result = mysql_query("select yid, content from ephem where did='$eday' AND mid='$emonth' order by yid ASC");
while (list($yid, $content) = mysql_fetch_array($result)) {
if ($cnt==1)
$boxstuff .= "<br /><br />";
$boxstuff .= aff_langue($content);
$cnt = 1;
}
|  Profil www
|
|
oim 1453
| Posté : 28-09-2004 21:55
J'ai fait ca, pour moi il a l'air juste mais ca me retourne une erreur à la ligne list(....
function ephemblock() {
$result = mysql_query("select content from ephem order by RAND DESC LIMIT 0,1");
list($content) = mysql_fetch_array($result);
$boxstuff = "<br /><br />";
$boxstuff = ($content);
global $block_title;
if ($block_title=="")
$title=("Fiche");
else
$title=$block_title;
themesidebox($title, $boxstuff);
}
|  Profil www
|
|
oim 1453
| Posté : 28-09-2004 22:22
C'es bon ca marche comme ca :
#autodoc ephemblock() : Bloc ephemerid <BR>=> syntaxe : function#ephemblock
function ephemblock() {
$result = mysql_query("select content from ephem order by RAND() DESC LIMIT 1");
list($content) = mysql_fetch_array($result);
$boxstuff = "<br /><br />";
$boxstuff = ($content);
global $block_title;
if ($block_title=="")
$title=("Fiche");
else
$title=$block_title;
themesidebox($title, $boxstuff);
}
A modifier dans mainfile pour avoir un affichage aléatoire.
Merci ! |  Profil www
|
|
Aller à la page : [ 1 | 2 ] |