Ce petit code vous permet d'intégrer une barre de progression en php dont vous trouverez le code source ici.
Code : Tout sélectionner
/**************************************************************************
* @name - Simple ShortCode Pbart
* @version - 1.0.0
* @author - Dakin Quelia
* @description - Ceci permet d'intégrer une barre de progression php
**************************************************************************/
function shortcode_pbart( $atts, $content = null )
{
// Attributes
extract(shortcode_atts(array(
'text' => '',
'percent' => '',
), $atts)
);
return '<img src="http://localhost/pbart.php?p=' . $percent . '&t=' . $text . '" alt="' . $text . '" />';
}