Funzione per le News "leggi tutto"

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.046
150
63
PR
www.borgo-italia.it
ciao
piccolo edit: per evitare di formare il link anche in stringhe che per errore di immissione siano del tipo
[MORE][/MORE]pape satan pape satan aleppe gridò pluto...
forese potresti fare questa correzione ulteriore
PHP:
<?php
function bbcode_more($stringa, $id){
    if(strpos("[/MORE]",$stringa)){
		$stringa=explode("[/MORE]",$stringa);
    	if(trim($stringa[0]) !="[MORE]"){//la stringa[0] è formata da [MORE] + qualcos'altro
			$dopo = trim(str_replace($stringa[0], " <a href='index.php?m=news_view&id=$id'>read more</a>", $stringa[0]));  
    		$prima=str_replace("[MORE]","",$stringa[0]);
    		//Ritorno il valore
    		return $prima."... ".$dopo;
		}else{//la stringa[0] è formata solo da [MORE]
			return "";
		}
	}else{
		return "";
	}
}
//......
?>
vedi tu se ti serve (e se funzia)
 

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
42
Massa, Italy
ha ora non vedo nemmeno la notizia .. idee?

grazie mille per gli aiuti e poi se risolviamo il problema posto il codice della bbcode.lib.inc.php.

grazie mille.
 

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
42
Massa, Italy
ti posto tutto il codice che ho scritto fin ora.

bbcode.lib.inc.php
PHP:
<?php
function bbcode($string)
{ 

	//No HTML
	$string = trim(str_replace("<", "&lt;", $string));
	$string = trim(str_replace(">", "&gt;", $string));
	
	//CHR 13
	$string = trim(str_replace(chr(13), "<br>;", $string));
	$string = trim(str_replace(";", "", $string));
	
	//BBCODE
	$string = trim(str_replace("[B]", "<b>", $string));
	$string = trim(str_replace("[/B]", "</b>", $string));
	$string = trim(str_replace("[I]", "<i>", $string));
	$string = trim(str_replace("[/I]", "</i>", $string));
	$string = trim(str_replace("[U]", "<u>", $string));
	$string = trim(str_replace("[/U]", "</u>", $string));
	$string = trim(str_replace("[HR]", "<hr>", $string));
	$string = trim(str_replace("[LI]", "<li>", $string));
	$string = trim(str_replace("[IMG=", "<img border='0' src='", $string));
	$string = trim(str_replace("[/IMG]", "'>", $string)); 
	$string = trim(str_replace("[URL=", "<a href='", $string));
	$string = trim(str_replace("[/URL]", "</a>", $string));
	$string = trim(str_replace("[ALIGN=left]", "<div align='left'>", $string));
	$string = trim(str_replace("[ALIGN=center]", "<div align='center'>", $string));
	$string = trim(str_replace("[ALIGN=right]", "<div align='right'>", $string));
	$string = trim(str_replace("[/ALIGN]", "</div>", $string));
	$string = trim(str_replace("[EMAIL=", "<a href=mailto:", $string));
	$string = trim(str_replace("[/EMAIL]", "</a>", $string));
	$string = trim(str_replace("[COLOR=", "<font color=", $string));
	$string = trim(str_replace("[/COLOR]", "</font>", $string));

	return $string;
}
function bbcode_more($stringa, $id){
    if(strpos("[/MORE]",$stringa)){
        $stringa=explode("[/MORE]",$stringa);
        if(trim($stringa[0]) !="[MORE]"){//la stringa[0] è formata da [MORE] + qualcos'altro
            $dopo = trim(str_replace($stringa[0], " <a href='index.php?m=news_view&id=$id'>read more</a>", $stringa[0]));  
            $prima=str_replace("[MORE]","",$stringa[0]);
            //Ritorno il valore
            return $prima."... ".$dopo;
        }else{//la stringa[0] è formata solo da [MORE]
            return "";
        }
    }else{
        return "";
    }
} 

function bbcode_complete($string)
{ 

	//No HTML
	$string = trim(str_replace("<", "&lt;", $string));
	$string = trim(str_replace(">", "&gt;", $string));
	
	//CHR 13
	$string = trim(str_replace(chr(13), "<br>;", $string));
	$string = trim(str_replace(";", "", $string));
	
	//BBCODE
	$string = trim(str_replace("[B]", "<b>", $string));
	$string = trim(str_replace("[/B]", "</b>", $string));
	$string = trim(str_replace("[I]", "<i>", $string));
	$string = trim(str_replace("[/I]", "</i>", $string));
	$string = trim(str_replace("[U]", "<u>", $string));
	$string = trim(str_replace("[/U]", "</u>", $string));
	$string = trim(str_replace("[HR]", "<hr>", $string));
	$string = trim(str_replace("[LI]", "<li>", $string));
	$string = trim(str_replace("[IMG=", "<img border='0' src='", $string));
	$string = trim(str_replace("[/IMG]", "'>", $string)); 
	$string = trim(str_replace("[URL=", "<a href='", $string));
	$string = trim(str_replace("[/URL]", "</a>", $string));
	$string = trim(str_replace("[ALIGN=left]", "<div align='left'>", $string));
	$string = trim(str_replace("[ALIGN=center]", "<div align='center'>", $string));
	$string = trim(str_replace("[ALIGN=right]", "<div align='right'>", $string));
	$string = trim(str_replace("[/ALIGN]", "</div>", $string));
	$string = trim(str_replace("[EMAIL=", "<a href=mailto:", $string));
	$string = trim(str_replace("[/EMAIL]", "</a>", $string));
	$string = trim(str_replace("[COLOR=", "<font color=", $string));
	$string = trim(str_replace("[/COLOR]", "</font>", $string));
	$string = trim(str_replace("[MORE]", "", $string));
    $string = trim(str_replace("[/MORE]", "", $string));

	//Ritorno il valore
	return $string;
}
?>

news:

PHP:
<div class="post">
			<p class="title"><?php echo $row["title"]; ?></p>
			<div class="entry">
			<p><?php echo bbcode_more(bbcode($row['news']), $row['id']); ?></p>
			<p class="meta"><?php echo "Pubblicato:&nbsp;".show_data($row["data"])."&nbsp;";	?>
			<?php echo "Sezione:&nbsp;".$row["_cat"]."&nbsp;";	?>&nbsp;&nbsp;Da: <?php echo $row["_user"]; ?></p>
			</div>
		</div>


news_view:
PHP:
<div class="post">
			<p class="title"><?php echo $row["title"]; ?></p>
			<div class="entry">
			<p><?php echo bbcode_complete($row['news']); ?></p>
			<p class="meta"><?php echo "Pubblicato:&nbsp;".show_data($row["data"])."&nbsp;";	?>
			<?php echo "Sezione:&nbsp;".$row["_cat"]."&nbsp;";	?>&nbsp;&nbsp;Da: <?php echo $row["_user"]; ?></p>
			</div>
		</div>

soluzioni ??

grazie mille.
 
Ultima modifica di un moderatore:

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
42
Massa, Italy
scusate, ma non riesco ad formattare il codice qui nel forum..

il forum dopo la bbcode lib,
c'è il codice delle news come le utilizzo ..

ma non so come mai me lo mette insieme alla libreria.

buona notte.
saluti,
luigi
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.046
150
63
PR
www.borgo-italia.it
ciao
avevo fatto un paio di errori nella bbcode_more($stringa, $id), uno di sintassi e uno di logica.
ho similato il tutto e sembra funzionare, prova a parte lo script (poi se vuoi togli i commenti)
PHP:
<?php
function bbcode($string)
{ 
    //No HTML
    $string = trim(str_replace("<", "&lt;", $string));
    $string = trim(str_replace(">", "&gt;", $string));
    //CHR 13
    $string = trim(str_replace(chr(13), "<br>;", $string));
    $string = trim(str_replace(";", "", $string));
    //BBCODE
    $string = trim(str_replace("[B]", "<b>", $string));
    $string = trim(str_replace("[/B]", "</b>", $string));
    $string = trim(str_replace("[I]", "<i>", $string));
    $string = trim(str_replace("[/I]", "</i>", $string));
    $string = trim(str_replace("[U]", "<u>", $string));
    $string = trim(str_replace("[/U]", "</u>", $string));
    $string = trim(str_replace("[HR]", "<hr>", $string));
    $string = trim(str_replace("[LI]", "<li>", $string));
    $string = trim(str_replace("[IMG=", "<img border='0' src='", $string));
    $string = trim(str_replace("[/IMG]", "'>", $string)); 
    $string = trim(str_replace("[URL=", "<a href='", $string));
    $string = trim(str_replace("[/URL]", "</a>", $string));
    $string = trim(str_replace("[ALIGN=left]", "<div align='left'>", $string));
    $string = trim(str_replace("[ALIGN=center]", "<div align='center'>", $string));
    $string = trim(str_replace("[ALIGN=right]", "<div align='right'>", $string));
    $string = trim(str_replace("[/ALIGN]", "</div>", $string));
    $string = trim(str_replace("[EMAIL=", "<a href=mailto:", $string));
    $string = trim(str_replace("[/EMAIL]", "</a>", $string));
    $string = trim(str_replace("[COLOR=", "<font color=", $string));
    $string = trim(str_replace("[/COLOR]", "</font>", $string));
    return $string;
}
function bbcode_more($stringa, $id){
    //var_dump(strpos("[/MORE]",$stringa)); echo " strpos<br>";
	//var_dump(strpos($stringa,"[/MORE]")); echo " strpos<br>";
	//if(strpos("[/MORE]",$stringa)){//invertito 
	if(strpos($stringa,"[/MORE]")){
        $str=explode("[/MORE]",$stringa);
        if(trim($str[0]) !="[MORE]"){//la stringa[0] è formata da [MORE] + qualcos'altro
            $dopo = trim(str_replace($str[0], " <a href='index.php?m=news_view&id=$id'>read more</a>", $str[0]));  
            $prima=str_replace("[MORE]","",$str[0]);
            //Ritorno il valore
            return $prima."... ".$dopo;
        }else{//la stringa[0] è formata solo da [MORE]
            $stringa=str_replace("[MORE]","",$stringa);
			$stringa=str_replace("[/MORE]","",$stringa);
			return $stringa;
        }
    }else{
        return $stringa;//se non c'è [MORE] deve tornare la stringa
    }
} 
function bbcode_complete($string)
{ 
    //No HTML
    $string = trim(str_replace("<", "&lt;", $string));
    $string = trim(str_replace(">", "&gt;", $string));
    //CHR 13
    $string = trim(str_replace(chr(13), "<br>;", $string));
    $string = trim(str_replace(";", "", $string));
    //BBCODE
    $string = trim(str_replace("[B]", "<b>", $string));
    $string = trim(str_replace("[/B]", "</b>", $string));
    $string = trim(str_replace("[I]", "<i>", $string));
    $string = trim(str_replace("[/I]", "</i>", $string));
    $string = trim(str_replace("[U]", "<u>", $string));
    $string = trim(str_replace("[/U]", "</u>", $string));
    $string = trim(str_replace("[HR]", "<hr>", $string));
    $string = trim(str_replace("[LI]", "<li>", $string));
    $string = trim(str_replace("[IMG=", "<img border='0' src='", $string));
    $string = trim(str_replace("[/IMG]", "'>", $string)); 
    $string = trim(str_replace("[URL=", "<a href='", $string));
    $string = trim(str_replace("[/URL]", "</a>", $string));
    $string = trim(str_replace("[ALIGN=left]", "<div align='left'>", $string));
    $string = trim(str_replace("[ALIGN=center]", "<div align='center'>", $string));
    $string = trim(str_replace("[ALIGN=right]", "<div align='right'>", $string));
    $string = trim(str_replace("[/ALIGN]", "</div>", $string));
    $string = trim(str_replace("[EMAIL=", "<a href=mailto:", $string));
    $string = trim(str_replace("[/EMAIL]", "</a>", $string));
    $string = trim(str_replace("[COLOR=", "<font color=", $string));
    $string = trim(str_replace("[/COLOR]", "</font>", $string));
	$string = trim(str_replace("[MORE]", "", $string));
    $string = trim(str_replace("[/MORE]", "", $string));
    //Ritorno il valore
    return $string;
}
//---------------
$row[1]="[MORE]nel [B]mezzo[/B] di[/MORE] camin di nostra vita";
$row[2]="mi ritrovai in ina selva oscura che [I]la [/I]diritta via era smarrita";
$row[3]="pape satan pape satan[MORE] aleppe grido[/MORE] pluto [U]con la voce chioccia[/U]";
$row[4]="[MORE][/MORE]voci alte e fioce e suon di man con elle";
//originali
foreach($row as $ch => $val){
	 echo "<p>$ch) $val</p>";
}
echo "<hr>";
//prova  read more
foreach($row as $ch => $val){
	 echo "<p>".bbcode_more(bbcode($val), $ch)."</p>";
}
echo "<hr>";
//simulazione news completa
foreach($row as $ch => $val){
	 echo "<p>$ch) ".bbcode_complete($val)."</p>";
}
?>
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.046
150
63
PR
www.borgo-italia.it
ciao
mi ero dimenticato disegnalarti che la bbcode_complete($string) invece di riscriverla tutta potresti fare
PHP:
<?php
//.....
function bbcode_complete($string)
{ 
    $string = bbcode($string);//richiami la funzione bbcode
    $string = trim(str_replace("[MORE]", "", $string));
    $string = trim(str_replace("[/MORE]", "", $string));
    //Ritorno il valore
    return $string;
}
//.....
?>
in questo modo se devi modificare/aggiungere bbcode o qualche altro tag lo fai una volta sola e risparmi spazio
 

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
42
Massa, Italy
ok, funziona mi è voluto capire come funzionava..però funziona..
allego tutto:

PHP:
<?php
function bbcode($string)
{ 
    //No HTML
    $string = trim(str_replace("<", "&lt;", $string));
    $string = trim(str_replace(">", "&gt;", $string));
    //CHR 13
    $string = trim(str_replace(chr(13), "<br>;", $string));
    $string = trim(str_replace(";", "", $string));
    //BBCODE
    $string = trim(str_replace("[B]", "<b>", $string));
    $string = trim(str_replace("[/B]", "</b>", $string));
    $string = trim(str_replace("[I]", "<i>", $string));
    $string = trim(str_replace("[/I]", "</i>", $string));
    $string = trim(str_replace("[U]", "<u>", $string));
    $string = trim(str_replace("[/U]", "</u>", $string));
    $string = trim(str_replace("[HR]", "<hr>", $string));
    $string = trim(str_replace("[LI]", "<li>", $string));
    $string = trim(str_replace("[IMG=", "<img border='0' src='", $string));
    $string = trim(str_replace("[/IMG]", "'>", $string)); 
    $string = trim(str_replace("[URL=", "<a href='", $string));
    $string = trim(str_replace("[/URL]", "</a>", $string));
    $string = trim(str_replace("[ALIGN=left]", "<div align='left'>", $string));
    $string = trim(str_replace("[ALIGN=center]", "<div align='center'>", $string));
    $string = trim(str_replace("[ALIGN=right]", "<div align='right'>", $string));
    $string = trim(str_replace("[/ALIGN]", "</div>", $string));
    $string = trim(str_replace("[EMAIL=", "<a href=mailto:", $string));
    $string = trim(str_replace("[/EMAIL]", "</a>", $string));
    $string = trim(str_replace("[COLOR=", "<font color=", $string));
    $string = trim(str_replace("[/COLOR]", "</font>", $string));
    return $string;
}
function bbcode_more($stringa, $id){
    //var_dump(strpos("[/MORE]",$stringa)); echo " strpos<br>";
    //var_dump(strpos($stringa,"[/MORE]")); echo " strpos<br>";
    //if(strpos("[/MORE]",$stringa)){//invertito 
    if(strpos($stringa,"[/MORE]")){
        $str=explode("[/MORE]",$stringa);
        if(trim($str[0]) !="[MORE]"){//la stringa[0] è formata da [MORE] + qualcos'altro
            $dopo = trim(str_replace($str[0], " <a href='index.php?m=news_view&id=$id'>read more</a>", $str[0]));  
            $prima=str_replace("[MORE]","",$str[0]);
            //Ritorno il valore
            return $prima."... ".$dopo;
        }else{//la stringa[0] è formata solo da [MORE]
            $stringa=str_replace("[MORE]","",$stringa);
            $stringa=str_replace("[/MORE]","",$stringa);
            return $stringa;
        }
    }else{
        return $stringa;//se non c'è [MORE] deve tornare la stringa
    }
} 
function bbcode_complete($string)
{ 
    $string = bbcode($string);//richiami la funzione bbcode 
    $string = trim(str_replace("[MORE]", "", $string));
    $string = trim(str_replace("[/MORE]", "", $string));
    //Ritorno il valore
    return $string;
}
?>

grazie mille e vado avanti con il lavoro.

ti ringrazio molto.
 

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
42
Massa, Italy
salve, ri apro questo topic per aggiornarvi il bbcode ecco il codice che lo preso in un tutorial di un blog inglese.
seguite tutta la discussione e cambiate il primo bbcode ($texT), con quello nuovo che vi ho messo qui.

saluti.
luigi.
PHP:
<?php
function bbcode($text)
{ 

  $bbcode = array("<", ">",
                "[list]", "[*]", "[/list]", 
                "[img]", "[/img]", 
                "[b]", "[/b]", 
                "[u]", "[/u]", 
                "[i]", "[/i]",
                '[color="', "[/color]",
                "[size=\"", "[/size]",
                '[url="', "[/url]",
                "[mail=\"", "[/mail]",
                "[code]", "[/code]",
                "[quote]", "[/quote]",
                '"]');
  $htmlcode = array("&lt;", "&gt;",
                "<ul>", "<li>", "</ul>", 
                "<img src=\"", "\">", 
                "<b>", "</b>", 
                "<u>", "</u>", 
                "<i>", "</i>",
                "<span style=\"color:", "</span>",
                "<span style=\"font-size:", "</span>",
                '<a href="', "</a>",
                "<a href=\"mailto:", "</a>",
                "<code>", "</code>",
                "<table width=100% bgcolor=lightgray><tr><td bgcolor=white>", "</td></tr></table>",
                '">');
  $newtext = str_replace($bbcode, $htmlcode, $text);
  $newtext = nl2br($newtext);//second pass
  return $newtext;
}	



function bbcode_more($stringa, $id){
    //var_dump(strpos("[/MORE]",$stringa)); echo " strpos<br>";
    //var_dump(strpos($stringa,"[/MORE]")); echo " strpos<br>";
    //if(strpos("[/MORE]",$stringa)){//invertito 
    if(strpos($stringa,"[/MORE]")){
        $str=explode("[/MORE]",$stringa);
        if(trim($str[0]) !="[MORE]"){//la stringa[0] è formata da [MORE] + qualcos'altro
            $dopo = trim(str_replace($str[0], "<br><br><p class='links'><a href='index.php?m=news_view&id=$id' class='more'>Leggi Tutto</a></p>", $str[0]));  
            $prima=str_replace("[MORE]","",$str[0]);
            //Ritorno il valore
            return $prima."... ".$dopo;
        }else{//la stringa[0] è formata solo da [MORE]
            $stringa=str_replace("[MORE]","",$stringa);
            $stringa=str_replace("[/MORE]","",$stringa);
            return $stringa;
        }
    }else{
        return $stringa;//se non c'è [MORE] deve tornare la stringa
    }
} 
function bbcode_complete($string)
{ 
    $string = bbcode($string);//richiami la funzione bbcode 
    $string = trim(str_replace("[MORE]", "", $string));
    $string = trim(str_replace("[/MORE]", "", $string));
    //Ritorno il valore
    return $string;
}
?>

lo preso da questo file txt trovato tramite google:

PHP:
<?php

// A simple FAST parser to convert BBCode to HTML
// Trade-in more restrictive grammar for speed and simplicty
//
// Syntax Sample:
// --------------
// [img]http://elouai.com/images/star.gif[/img]
// [url="http://elouai.com"]eLouai[/url]
// [mail="[email protected]"]Webmaster[/mail]
// [size="25"]HUGE[/size]
// [color="red"]RED[/color]
// [b]bold[/b]
// [i]italic[/i]
// [u]underline[/u]
// [list][*]item[*]item[*]item[/list]
// [code]value="123";[/code]
// [quote]John said yadda yadda yadda[/quote]
//
// Usage:
// ------
// <?php include 'bb2html.php'; ?>
// <?php $htmltext = bb2html($bbtext); ?>
//
// (please do not remove credit)
// author: Louai Munajim
// website: [url]http://elouai.com[/url]
// date: 2004/Apr/18


function bb2html($text)
{
  $bbcode = array("<", ">",
                "[list]", "[*]", "[/list]", 
                "[img]", "[/img]", 
                "[b]", "[/b]", 
                "[u]", "[/u]", 
                "[i]", "[/i]",
                '[color="', "[/color]",
                "[size=\"", "[/size]",
                '[url="', "[/url]",
                "[mail=\"", "[/mail]",
                "[code]", "[/code]",
                "[quote]", "[/quote]",
                '"]');
  $htmlcode = array("&lt;", "&gt;",
                "<ul>", "<li>", "</ul>", 
                "<img src=\"", "\">", 
                "<b>", "</b>", 
                "<u>", "</u>", 
                "<i>", "</i>",
                "<span style=\"color:", "</span>",
                "<span style=\"font-size:", "</span>",
                '<a href="', "</a>",
                "<a href=\"mailto:", "</a>",
                "<code>", "</code>",
                "<table width=100% bgcolor=lightgray><tr><td bgcolor=white>", "</td></tr></table>",
                '">');
  $newtext = str_replace($bbcode, $htmlcode, $text);
  $newtext = nl2br($newtext);//second pass
  return $newtext;
}
?>
 
Discussioni simili
Autore Titolo Forum Risposte Data
Lino80 [Retribuito] Cerco programmatore php per modifica/inserimento funzione/valori da un plugin importer wordpress Offerte e Richieste di Lavoro e/o Collaborazione 0
V [Visual Basic] Richiamare funzione su modulo per restituire list Visual Basic 0
C Creazione di una funzione per il filtraggio dei campi di un db Presentati al Forum 0
T [Javascript] funzione per attivare analytics... dov'è l'errore? Javascript 14
L [javascript]problema funzione per webapi Javascript 4
borgo italia una funzione per verificare l'invio di files Snippet PHP 0
A Funzione javascript per effettuare la slide del carosello in avanti Javascript 0
trattorino [PHP] funzione per visualizzare solo carattere PHP 2
N funzione autoplay video per browser mobili come ios e android Javascript 0
neo996sps Logica per funzione preventivi: sono sulla strada giusta? PHP 4
S Utilizzare la funzione postmessage per fare un redirect Javascript 0
L Funzione per API HTML5 Javascript 0
neo996sps [PHP e funzioni con PDO] Funzione per generare corpo tabella PHP 1
M [Datetimepicker]Richiamare funzione per più id uguali jQuery 4
otto9due Funzione per ridimensionare div in base alla risoluzione schermo.. Javascript 5
G Funzione che resta in ascolto per una chiamata esterna Javascript 1
T [MYSQL] Richieste in Java per funzione Ajax MySQL 0
B Funzione per ottenere una determinata stringa PHP 4
ivarello Due Pulsanti con per lanciare funzione Javascript 0
L Funzione per verificare distanza di tempo non funziona: perchè? PHP 4
Z MailChimp: funzione per invio coupon personalizzati ed unici Email Marketing 2
T Funzione per redirect versione mobile: escludere i tablet Javascript 1
N [risolto] Funzione per calcolo età PHP 4
L funzione per nascondere username PHP 5
A funzione per popolare un drop down list Javascript 4
A Funzione unica per prendere e recuperare valori Javascript 0
P Funzione truncate per testo Javascript 3
E ordinamento array multidimensionale per un valore ottenuto tramite una funzione PHP 1
A Funzione per modificare foto PHP 2
P funzione per safari PHP 0
Sevenjeak Aiuto miglioramento funzione per inserimento BBCode in textarea Javascript 1
D Problema con funzione preg_match() per controllo email PHP 2
L Funzione per inserire solo testo PHP 13
H Funzione onmouseover per mostrare un box con un link da cliccare? Javascript 3
G Funzione per spedire email a destinatari diversi PHP 0
Monital Modificare una funzione per creazione tabella html PHP 15
L funzione per ruoli.. PHP 11
G funzione javascript per passaggio valori Javascript 1
emanuelevt funzione per entità html e classe PHP 1
asevenx problema con funzione per far apparire e scomparire un form di commenti PHP 1
M jQuery: funzione substr o substring per tagliare un testo? jQuery 1
M JavaScript: lanciare funzione ASP per salvare dati in database Javascript 0
J Funzione RICERCA per rubrica telefonica PHP 1
P SCript per la funzione condividi Ajax 1
T funzione cerca per il mio sito PHP 4
G Errore funzione per form PHP 2
O problemi con funzione per stampare tendina per data PHP 6
V [JQuery] Aiuto per funzione Ajax jQuery 0
P Funzione "http_build_query" per PHP4 PHP 0
G [javascript]Chiamare funzione javascript per menù Javascript 2

Discussioni simili