groups

name language licence
PHP : isset checkbox avant de le mettre dans une variable Other Other
PHP : forcer telechargement d'un fichier PHP Other
PHP : date en php Other Other
PHP : class mail PHP Other
PHP : expressions régulière PHP Other
PHP : detection ie6 et ie7 en php PHP Other
PHP : Boucle ecriture dans un fichier XML PHP Other
PHP : forcer telechargement d'un fichier PHP Other

< 1 2 3 4 5 >



language: PHP
licence: Other

PHP : Boucle ecriture dans un fichier XML

options: view full snippetsend to code collector
<?php

	//boucle pour ecriture d'un flux xml, exemple d'utilisation : les ficihers page.xml pour les flip flash
	
	//concatenation du flux xml dans la variable $xml
	$xml = '<content width="623" height="870" bgcolor="000000" loadercolor="00519e" bgimage="2" panelcolor="00519e" buttoncolor="00519e" textcolor="ffffff">';         
	 
	 
	for($i = 1; $i < 115; $i++) {   		
		
		$xml.='<page src="ENERGIE_FLIP/AEMQ_energie_BD_'.$i.'.swf"/>';
	
	}
	
	$xml .= '</content>';
	
(Continues...)