<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Grafici Creativi - Programmazione Web</title>
		<link>http://www.graficicreativi.com/</link>
		<description>I vari linguaggi del web, come imparare, come utilizzarli, come trarre vantaggi da loro. 
Saranno forniti script e guide di esempio  agli utenti.</description>
		<language>it</language>
		<lastBuildDate>Fri, 10 Sep 2010 08:15:59 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.graficicreativi.com/images/misc/rss.png</url>
			<title>Grafici Creativi - Programmazione Web</title>
			<link>http://www.graficicreativi.com/</link>
		</image>
		<item>
			<title>Aiuto visualizzazione e gestione dati XML</title>
			<link>http://www.graficicreativi.com/programmazione-web/16306-aiuto-visualizzazione-e-gestione-dati-xml.html</link>
			<pubDate>Tue, 07 Sep 2010 05:00:29 GMT</pubDate>
			<description><![CDATA[Ciao a tutti, mi è stato dato questo codice da un Admin di un sito patner: 
 
 
 
Codice: 
--------- 
<?php  $application_id = 1; $application_code =...]]></description>
			<content:encoded><![CDATA[<div><!-- google_ad_section_start -->Ciao a tutti, mi è stato dato questo codice da un Admin di un sito patner:<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Codice:</div>
	<hr /><code class="bbcode_code">&lt;?<acronym title="Hypertext Preprocessor">php</acronym>&nbsp; $application_id = 1; $application_code = &quot;YOUR CODE&quot;; $training = 3;&nbsp; $array = my_xml2array(&quot;https://www.hattrick-youthclub.org/_app_data_provider/?action=trainingsspeed&amp;application_id=&quot;.$application_id.&quot;&amp;application_code=&quot;.$application_code.&quot;&amp;training=&quot;.$training);&nbsp; print_r($array);&nbsp; function my_xml2array($__url) {&nbsp; &nbsp;  $xml_values = array();&nbsp; &nbsp;  $contents = file_get_contents($__url);&nbsp; &nbsp;  $parser = xml_parser_create('');&nbsp; &nbsp;  if(!$parser)&nbsp; &nbsp; &nbsp; &nbsp;  return false;&nbsp; &nbsp; &nbsp; xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, 'UTF-8');&nbsp; &nbsp;  xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);&nbsp; &nbsp;  xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);&nbsp; &nbsp;  xml_parse_into_struct($parser, trim($contents), $xml_values);&nbsp; &nbsp;  xml_parser_free($parser);&nbsp; &nbsp;  if (!$xml_values)&nbsp; &nbsp; &nbsp; &nbsp;  return array();&nbsp; &nbsp; &nbsp; &nbsp;  $xml_array = array();&nbsp; &nbsp;  $last_tag_ar =&amp; $xml_array;&nbsp; &nbsp;  $parents = array();&nbsp; &nbsp;  $last_counter_in_tag = array(1=&gt;0);&nbsp; &nbsp;  foreach ($xml_values as $data)&nbsp; &nbsp;  {&nbsp; &nbsp; &nbsp; &nbsp;  switch($data['type'])&nbsp; &nbsp; &nbsp; &nbsp;  {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  case 'open':&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $last_counter_in_tag[$data['level']+1] = 0;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $new_tag = array('name' =&gt; $data['tag']);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  if(isset($data['attributes']))&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $new_tag['attributes'] = $data['attributes'];&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  if(isset($data['value']) &amp;&amp; trim($data['value']))&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $new_tag['value'] = trim($data['value']);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $last_tag_ar[$last_counter_in_tag[$data['level']]] = $new_tag;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $parents[$data['level']] =&amp; $last_tag_ar;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $last_tag_ar =&amp; $last_tag_ar[$last_counter_in_tag[$data['level']]++];&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  break;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  case 'complete':&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $new_tag = array('name' =&gt; $data['tag']);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  if(isset($data['attributes']))&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $new_tag['attributes'] = $data['attributes'];&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  if(isset($data['value']) &amp;&amp; trim($data['value']))&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $new_tag['value'] = trim($data['value']);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $last_count = count($last_tag_ar)-1;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $last_tag_ar[$last_counter_in_tag[$data['level']]++] = $new_tag;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  break;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  case 'close':&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  $last_tag_ar =&amp; $parents[$data['level']];&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  break;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  default:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  break;&nbsp; &nbsp; &nbsp; &nbsp;  };&nbsp; &nbsp;  }&nbsp; &nbsp;  return $xml_array; }</code><hr />
</div> Con la password corretta, che ovviamente ho, si ha la possibilità di ottenere come output un serie di dati che vorrei organizzare sotto forma di tabelle.<br />
<br />
Il sito dell'Admin che mi ha consegnato questo codice li visualizza così:<br />
<a href="http://www.hattrick-youthclub.org/site/trainingsspeed" target="_blank">hattrick youthclub</a><br />
<br />
E vorrei fare una cosa simile nel mio sito: <a href="http://www.e-compa.com/ht" target="_blank">Hattrick Club Italia - Forum Chat Guide Tabelle Loghi e molto altro!</a><br />
<br />
C'è un'anima pia che mi può aiutare in questo progettino? E' davvero molto importante per me  :)<br />
<br />
A disposizione per eventuali precisazioni o dati mancanti, grazie.<!-- google_ad_section_end --></div>

 ]]></content:encoded>
			<category domain="http://www.graficicreativi.com/programmazione-web/">Programmazione Web</category>
			<dc:creator>Melegna</dc:creator>
			<guid isPermaLink="true">http://www.graficicreativi.com/programmazione-web/16306-aiuto-visualizzazione-e-gestione-dati-xml.html</guid>
		</item>
		<item>
			<title>copiando si impara... rispolveriamo il css</title>
			<link>http://www.graficicreativi.com/programmazione-web/16278-copiando-si-impara-rispolveriamo-il-css.html</link>
			<pubDate>Sun, 05 Sep 2010 13:42:10 GMT</pubDate>
			<description><![CDATA[salve a tutti è da un po' che non posto qualcosa in questa area...  
 
l'altro giorno stavo navigando per il web e mi sono soffermato su un sito......]]></description>
			<content:encoded><![CDATA[<div><!-- google_ad_section_start -->salve a tutti è da un po' che non posto qualcosa in questa area... <br />
<br />
l'altro giorno stavo navigando per il web e mi sono soffermato su un sito... la grafica è molto semplice ma d'impatto e si può dire che qua e la abbia fatto scuola... ho quindi dato un occhiata al css e html... e per esercitarmi mi son messo a scopiazzarlo<br />
<br />
l'idea era quella di capire il funzionamento del menu e pulsanti... in pratica si carica una sola img formata già dai vari effetti normale, :hover e :active, così il pc dovrà caricare una sola immagine e l'effetto rollover sarà più veloce<br />
<br />
beh eccovi quello che son riuscito a scopiazzare <a href="http://bisior.altervista.org/project000/" target="_blank">Project 000</a><br />
<br />
si il sito originale è proprio quello della grande A =_=<!-- google_ad_section_end --></div>

 ]]></content:encoded>
			<category domain="http://www.graficicreativi.com/programmazione-web/">Programmazione Web</category>
			<dc:creator>bisior</dc:creator>
			<guid isPermaLink="true">http://www.graficicreativi.com/programmazione-web/16278-copiando-si-impara-rispolveriamo-il-css.html</guid>
		</item>
		<item>
			<title>Problema caricamento file su server y2k hosting</title>
			<link>http://www.graficicreativi.com/programmazione-web/16264-problema-caricamento-file-su-server-y2k-hosting.html</link>
			<pubDate>Sat, 04 Sep 2010 08:48:35 GMT</pubDate>
			<description>Ragazzi è da qualche giorno a questa parte che caricando alcuni file sul mio server essi non vengono visualizzati nelle pagine web da me create. 
La...</description>
			<content:encoded><![CDATA[<div><!-- google_ad_section_start -->Ragazzi è da qualche giorno a questa parte che caricando alcuni file sul mio server essi non vengono visualizzati nelle pagine web da me create.<br />
La cosa più assurda è notare come sul server i file siano realmente presenti e posizionati correttamente nei percorsi delle cartelle da me create. Per essere più preciso, nella pagina non vengono caricati alcuni elementi flash in formato .swf ed alcuni file in formato .png che compongono gli elementi di sfondo delle tabelle della pagina stessa...<br />
D'altronde, penso di non aver sbagliato niente nel caricamento, anche perchè è una procedura che effettuo sempre per la pubblicazione delle mie pagine web.<br />
Ringrazio tutti anticipatamente per eventuali risposte...<!-- google_ad_section_end --></div>

 ]]></content:encoded>
			<category domain="http://www.graficicreativi.com/programmazione-web/">Programmazione Web</category>
			<dc:creator>vetrofanitalia.com</dc:creator>
			<guid isPermaLink="true">http://www.graficicreativi.com/programmazione-web/16264-problema-caricamento-file-su-server-y2k-hosting.html</guid>
		</item>
		<item>
			<title>riquadro testo immagine:</title>
			<link>http://www.graficicreativi.com/programmazione-web/16142-riquadro-testo-immagine.html</link>
			<pubDate>Thu, 26 Aug 2010 10:47:54 GMT</pubDate>
			<description>Salve a tutti guardando un sito ( ScarPotter 3.0 (Harry Potter) | O melhor site brasileiro sobre a série Harry Potter » Notícias, Fotos, Informações...</description>
			<content:encoded><![CDATA[<div><!-- google_ad_section_start -->Salve a tutti guardando un sito ( <a href="http://www.scarpotter.com" target="_blank">ScarPotter 3.0 (Harry Potter) | O melhor site brasileiro sobre a série Harry Potter » Notícias, Fotos, Informações e muito mais!</a>) attinente al mio: <a href="http://www.hogwartsite.net/html/" target="_blank">Hogwartsite.net | Migliaia di news su Harry Potter e i Doni della Morte , video, e rumors e altro ancora...</a> ho visto quakosa, in questa pagina web: <a href="http://www.scarpotter.com/noticias/resumo-tudo-o-que-veremos-em-rel-quias-da-morte-parte-1-de-acordo-com-o-test-screening.html" target="_blank">ScarPotter (Harry Potter) » Resumo: Tudo o que veremos em &lt;i&gt;&quot;Relquias da Morte - Parte 1&quot;&lt;/i&gt;!</a> che mi ha incuriosito <br />
ecco l'immagine: <br />
<img src="http://img52.imageshack.us/img52/8972/immagineux.jpg" border="0" alt="" /><br />
potete aiutarmi a recreare quei riquadri smussati, in quello stesso colore e con le immagini dello stessa altezza del riquadro...penso che sia css...potete aiutarmi dovvrei fare la stessa e identica cosa..magari si può vedere nel codice css di quel sito...nn sn tanto esperto... mi aiutate con i codici^?<!-- google_ad_section_end --></div>

 ]]></content:encoded>
			<category domain="http://www.graficicreativi.com/programmazione-web/">Programmazione Web</category>
			<dc:creator>Destino</dc:creator>
			<guid isPermaLink="true">http://www.graficicreativi.com/programmazione-web/16142-riquadro-testo-immagine.html</guid>
		</item>
	</channel>
</rss>
