• Home
  • Forum
  • Fare Web
  • PHP

Funzione per le News "leggi tutto"

  • Creatore Discussione Creatore Discussione luigi777
  • Data di inizio Data di inizio 14 Gen 2013
Prec.
  • 1
  • 2
Primo Prec. 2 di 2

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 20 Gen 2013
  • #21
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...
Clicca per allargare...
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)
 
L

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
43
Massa, Italy
  • 20 Gen 2013
  • #22
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.
 
L

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
43
Massa, Italy
  • 20 Gen 2013
  • #23
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: 21 Gen 2013
L

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
43
Massa, Italy
  • 20 Gen 2013
  • #24
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.044
150
63
PR
www.borgo-italia.it
  • 20 Gen 2013
  • #25
ciao
domani ci do un occhio, poi spero di saperti dire
buonaotte
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 21 Gen 2013
  • #26
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>";
}
?>
 
L

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
43
Massa, Italy
  • 21 Gen 2013
  • #27
buongiorno appena posso provo, ora sto facendo altro..

prima di sera provo.

saluti,
luigi
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 21 Gen 2013
  • #28
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
 
L

leoninone

Nuovo Utente
19 Gen 2013
8
0
0
  • 21 Gen 2013
  • #29
molto interessante.....siete davvero bravi qui
 

borgo italia

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
4 Feb 2008
16.044
150
63
PR
www.borgo-italia.it
  • 21 Gen 2013
  • #30
ciao
leoninone ha scritto:
molto interessante.....siete davvero bravi qui
Clicca per allargare...
è, si si ... lo sappiamo, modestia a parte
 
L

leoninone

Nuovo Utente
19 Gen 2013
8
0
0
  • 21 Gen 2013
  • #31
​
borgo italia ha scritto:
ciao
è, si si ... lo sappiamo, modestia a parte
Clicca per allargare...
 
L

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
43
Massa, Italy
  • 21 Gen 2013
  • #32
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.
 
L

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
43
Massa, Italy
  • 9 Mar 2013
  • #33
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="webmaster@elouai.com"]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;
}
?>
 
Prec.
  • 1
  • 2
Primo Prec. 2 di 2
Devi accedere o registrarti per poter rispondere.

Discussioni simili

[Retribuito] Cerco programmatore php per modifica/inserimento funzione/valori da un plugin importer wordpress
  • Lino80
  • 9 Gen 2023
  • Offerte e Richieste di Lavoro e/o Collaborazione
Risposte
0
Visite
3K
Offerte e Richieste di Lavoro e/o Collaborazione 9 Gen 2023
Lino80
V
[Visual Basic] Richiamare funzione su modulo per restituire list
  • visualrenzo
  • 23 Feb 2019
  • Visual Basic
Risposte
0
Visite
3K
Visual Basic 23 Feb 2019
visualrenzo
V
C
Creazione di una funzione per il filtraggio dei campi di un db
  • cirass95
  • 26 Giu 2018
  • Presentati al Forum
Risposte
0
Visite
944
Presentati al Forum 26 Giu 2018
cirass95
C
T
[Javascript] funzione per attivare analytics... dov'è l'errore?
  • theseo
  • 13 Mar 2018
  • Javascript
Risposte
14
Visite
2K
Javascript 13 Mar 2018
otto9due
L
[javascript]problema funzione per webapi
  • Lella.Raffa
  • 26 Gen 2018
  • Javascript
Risposte
4
Visite
2K
Javascript 27 Gen 2018
marino51
una funzione per verificare l'invio di files
  • borgo italia
  • 12 Mar 2017
  • Snippet PHP
Risposte
0
Visite
2K
Snippet PHP 12 Mar 2017
borgo italia
A
Funzione javascript per effettuare la slide del carosello in avanti
  • Andrea Crocco
  • 10 Gen 2017
  • Javascript
Risposte
0
Visite
2K
Javascript 10 Gen 2017
Andrea Crocco
A
[PHP] funzione per visualizzare solo carattere
  • trattorino
  • 18 Ago 2016
  • PHP
Risposte
2
Visite
2K
PHP 20 Ago 2016
trattorino
N
funzione autoplay video per browser mobili come ios e android
  • neo1976
  • 19 Gen 2016
  • Javascript
Risposte
0
Visite
2K
Javascript 19 Gen 2016
neo1976
N
Logica per funzione preventivi: sono sulla strada giusta?
  • neo996sps
  • 9 Gen 2016
  • PHP
Risposte
4
Visite
2K
PHP 11 Gen 2016
neo996sps
S
Utilizzare la funzione postmessage per fare un redirect
  • Syd Chino Barrett
  • 23 Nov 2015
  • Javascript
Risposte
0
Visite
1K
Javascript 23 Nov 2015
Syd Chino Barrett
S
L
Funzione per API HTML5
  • littelme
  • 2 Set 2015
  • Javascript
Risposte
0
Visite
1K
Javascript 2 Set 2015
littelme
L
[PHP e funzioni con PDO] Funzione per generare corpo tabella
  • neo996sps
  • 8 Lug 2015
  • PHP
Risposte
1
Visite
2K
PHP 8 Lug 2015
n1k4r0
N
M
[Datetimepicker]Richiamare funzione per più id uguali
  • Maures
  • 2 Apr 2015
  • jQuery
Risposte
4
Visite
2K
jQuery 2 Apr 2015
Maures
M
Funzione per ridimensionare div in base alla risoluzione schermo..
  • otto9due
  • 29 Nov 2014
  • Javascript
Risposte
5
Visite
4K
Javascript 30 Nov 2014
otto9due
G
Funzione che resta in ascolto per una chiamata esterna
  • Gabriele Pieretti
  • 20 Nov 2014
  • Javascript
Risposte
1
Visite
1K
Javascript 20 Nov 2014
criric
T
[MYSQL] Richieste in Java per funzione Ajax
  • TheBlackV
  • 10 Nov 2014
  • MySQL
Risposte
0
Visite
2K
MySQL 10 Nov 2014
TheBlackV
T
B
Funzione per ottenere una determinata stringa
  • BayLollo
  • 25 Ott 2014
  • PHP
Risposte
4
Visite
1K
PHP 26 Ott 2014
BayLollo
B
Due Pulsanti con per lanciare funzione
  • ivarello
  • 19 Ago 2014
  • Javascript
Risposte
0
Visite
1K
Javascript 19 Ago 2014
ivarello
L
Funzione per verificare distanza di tempo non funziona: perchè?
  • Lighty
  • 9 Mag 2014
  • PHP
Risposte
4
Visite
15K
PHP 11 Mag 2014
Lighty
L
Condividi:
Facebook X (Twitter) LinkedIn WhatsApp e-mail Condividi Link
  • Home
  • Forum
  • Fare Web
  • PHP
  • Italiano
  • Termini e condizioni d'uso del sito
  • Policy Privacy
  • Aiuto
  • Home
Community platform by XenForo® © 2010-2024 XenForo Ltd. | Traduzione a cura di XenForo Italia
Menu
Accedi

Registrati

  • Home
  • Forum
    • Nuovi Messaggi
    • Cerca...
  • Novità
    • Featured content
    • Nuovi Messaggi
    • Ultime Attività
X

Privacy & Transparency

We use cookies and similar technologies for the following purposes:

  • Personalized ads and content
  • Content measurement and audience insights

Do you accept cookies and these technologies?

X

Privacy & Transparency

We use cookies and similar technologies for the following purposes:

  • Personalized ads and content
  • Content measurement and audience insights

Do you accept cookies and these technologies?