<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Framework on Outweb</title><link>https://outweb.eu/tags/framework/</link><description>Recent content in Framework on Outweb</description><image><title>Outweb</title><url>https://outweb.eu/images/seo/outweb-default-og.svg</url><link>https://outweb.eu/images/seo/outweb-default-og.svg</link></image><generator>Hugo</generator><language>fr-FR</language><lastBuildDate>Tue, 16 Aug 2011 06:28:45 +0000</lastBuildDate><atom:link href="https://outweb.eu/tags/framework/feed.xml" rel="self" type="application/rss+xml"/><item><title>Framework JQuery mobile</title><link>https://outweb.eu/2011/08/16/framework-jquery-mobile/</link><pubDate>Tue, 16 Aug 2011 06:28:45 +0000</pubDate><guid isPermaLink="false">https://outweb.eu/2011/08/16/framework-jquery-mobile/</guid><description>Jqmphp, framework JQuery mobile</description></item><item><title>Sortie de Symfony 2</title><link>https://outweb.eu/2011/07/29/sortie-de-symphony-2/</link><pubDate>Fri, 29 Jul 2011 05:22:59 +0000</pubDate><guid isPermaLink="false">https://outweb.eu/2011/07/29/sortie-de-symphony-2/</guid><description>&lt;p>La nouvelle mouture tant attendue de Symfony 2 est sortie hier matin en version stable. Après de nombreux mois de tests, de versions releases, beta et RC, la version stable et définitive est enfin accessible.&lt;/p>
&lt;p>Au programme, énormément de changements et une simplification apparente du framework. Les bundles font leur apparition, ils vont vous permettre d&amp;rsquo;insérer dans votre site Internet des modules que vous pouvez télécharger avec composer. Il existe déjà un grand nombre de bundles tout faits et prêts à l&amp;rsquo;emploi, comme un forum ou une gestion des membres par exemple. Le but est réellement à court terme de fournir tous les codes de base pour un site Internet, afin de se focaliser seulement sur le coeur de votre application.&lt;/p></description></item><item><title>Installation et Configuration de CodeIgniter</title><link>https://outweb.eu/2011/06/04/installation-et-configuration-de-codeigniter/</link><pubDate>Sat, 04 Jun 2011 12:32:39 +0000</pubDate><guid isPermaLink="false">https://outweb.eu/2011/06/04/installation-et-configuration-de-codeigniter/</guid><description>&lt;h2 id="pré-requis">Pré requis&lt;/h2>
&lt;ul>
&lt;li>Un serveur Apache ( lamp, wamp, easy php, mamp, &amp;hellip; )&lt;/li>
&lt;li>Un SGBD mysql&lt;/li>
&lt;/ul>
&lt;h2 id="la-base-de-données">La Base de données&lt;/h2>
&lt;p>Dans un premier temps voici un exemple de petite base de données. Par exemple la base de données suivante&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-mysql" data-lang="mysql">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">CREATE&lt;/span> &lt;span style="color:#66d9ef">DATABASE&lt;/span> &lt;span style="color:#f92672">`&lt;/span>tuto&lt;span style="color:#f92672">`&lt;/span> &lt;span style="color:#66d9ef">DEFAULT&lt;/span> &lt;span style="color:#66d9ef">CHARACTER&lt;/span> &lt;span style="color:#66d9ef">SET&lt;/span> latin1 &lt;span style="color:#66d9ef">COLLATE&lt;/span> latin1_swedish_ci;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">USE&lt;/span> &lt;span style="color:#f92672">`&lt;/span>tuto&lt;span style="color:#f92672">`&lt;/span>;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">CREATE&lt;/span> &lt;span style="color:#66d9ef">TABLE&lt;/span> &lt;span style="color:#66d9ef">IF&lt;/span> &lt;span style="color:#66d9ef">NOT&lt;/span> &lt;span style="color:#66d9ef">EXISTS&lt;/span> &lt;span style="color:#f92672">`&lt;/span>message&lt;span style="color:#f92672">`&lt;/span> (
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#f92672">`&lt;/span>id&lt;span style="color:#f92672">`&lt;/span> &lt;span style="color:#66d9ef">int&lt;/span>(&lt;span style="color:#ae81ff">8&lt;/span>) &lt;span style="color:#66d9ef">NOT&lt;/span> &lt;span style="color:#66d9ef">NULL&lt;/span> &lt;span style="color:#66d9ef">AUTO_INCREMENT&lt;/span>,
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#f92672">`&lt;/span>sujet&lt;span style="color:#f92672">`&lt;/span> &lt;span style="color:#66d9ef">varchar&lt;/span>(&lt;span style="color:#ae81ff">255&lt;/span>) &lt;span style="color:#66d9ef">NOT&lt;/span> &lt;span style="color:#66d9ef">NULL&lt;/span>,
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#f92672">`&lt;/span>message&lt;span style="color:#f92672">`&lt;/span> &lt;span style="color:#66d9ef">text&lt;/span> &lt;span style="color:#66d9ef">NOT&lt;/span> &lt;span style="color:#66d9ef">NULL&lt;/span>,
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">PRIMARY&lt;/span> &lt;span style="color:#66d9ef">KEY&lt;/span> (&lt;span style="color:#f92672">`&lt;/span>id&lt;span style="color:#f92672">`&lt;/span>)
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>) &lt;span style="color:#66d9ef">ENGINE&lt;/span>&lt;span style="color:#f92672">=&lt;/span>MyISAM &lt;span style="color:#66d9ef">DEFAULT&lt;/span> &lt;span style="color:#66d9ef">CHARSET&lt;/span>&lt;span style="color:#f92672">=&lt;/span>latin1 &lt;span style="color:#66d9ef">AUTO_INCREMENT&lt;/span>&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">1&lt;/span> ;
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Maintenant que la base est prête nous alors configurer CodeIgniter pour qu&amp;rsquo;il puisse s&amp;rsquo;y connecter.&lt;/p>
&lt;p>Rendez-vous dans le fichier : application/config/database.php&lt;/p></description></item></channel></rss>