1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| function tableau_fin ()
{
global $VM_LANG;
echo ("<div align=\"center\">");
echo("<table width=\"500\">");
echo("<tr>");
echo("<td align=\"justify\" width=\"500\">");
echo ("<div align=\"justify\">");
$txt = stripslashes($VM_LANG->_PHPSHOP_RETOUR_ENVOI);
echo("$txt");
echo ("</div>");
echo("</td>");
echo("</tr>");
echo("<tr>");
echo("<td align=\"center\" width=\"500\">");
echo ("<div align=\"justify\">");
$txt = stripslashes($VM_LANG->_PHPSHOP_RETOUR_BACK);
echo("$txt");
echo ("</div>");
echo("</td>");
echo("</tr>");
echo("</table>");
echo("</div>");
} |