<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RECURSOS WEB &#187; flashmania.es</title>
	<atom:link href="http://www.flashmania.es/recursos_web/tag/flashmaniaes/feed" rel="self" type="application/rss+xml" />
	<link>http://www.flashmania.es</link>
	<description>RECURSOS WEB</description>
	<lastBuildDate>Thu, 08 Dec 2011 16:42:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>CURSO PHP V: CONCEPTOS DE PROGRAMACION</title>
		<link>http://www.flashmania.es/recursos_web/curso-de-php-v-conceptos-de-programacion</link>
		<comments>http://www.flashmania.es/recursos_web/curso-de-php-v-conceptos-de-programacion#comments</comments>
		<pubDate>Fri, 17 Apr 2009 15:51:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CURSO PHP]]></category>
		<category><![CDATA[CURSOS DIRECTOS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PROGRAMACIÃ“N]]></category>
		<category><![CDATA[RECURSOS]]></category>
		<category><![CDATA[RECURSOS WEB]]></category>
		<category><![CDATA[diseÃ±o web madrid]]></category>
		<category><![CDATA[diseÃ±o web malaga]]></category>
		<category><![CDATA[diseÃ±o web nerja]]></category>
		<category><![CDATA[DISEÃ‘O WEB]]></category>
		<category><![CDATA[flashmania.es]]></category>
		<category><![CDATA[programacion web]]></category>
		<category><![CDATA[Recursos web profesionales]]></category>

		<guid isPermaLink="false">http://www.flashmania.es/?p=335</guid>
		<description><![CDATA[CURSOS DIRECTOS: CURSO DE PHP V: CONCEPTOS DE PROGRAMACIÃ“N Bien en este capÃ­tulo del curso de programacion de php vamos a repasar algunos conceptos previso y que nos servirÃ¡ como base, para aprender cualquier lenguaje de programaciÃ³n. aunque algunos ya los hemos visto y son de evidente conocimiento, para los que ya sabemos programar. ahÃ­ os lo dejo para consulta o repaso. VARIABLE una definicion de variable es la ubicaciÃ³n temporal de memoria, donde el programador guarda determinado valor que le interesa retener durante la ejecuciÃ³n de algÃºn script. dependiendo del lenguaje de programacion de declara de una manera u otra&#8230; por ejemplo para php por ejemplo para javascript (que proximamente veremos un cursillo intensivo) TIPOS DE DATOS EN PROGRAMACIÃ“N NUMEROS =&#62; Se tratan de numeros enteros o reales que a su vez pueden ser positivos, negativos y el cero, por supuesto! STRING =&#62; ya comenzamos con las palebrejas en inglÃ©s, un string es una cadena, traducciÃ³n literal y se refiere a datos que contienen cadenas de caracteres, osease, palabras, cadenas de texto. BOULEAN =&#62; serÃ­an buleanos, en castellano serian datos cuyos valores significan VERDADERO o FALSO NULL =&#62; son datos cuyo valores estan vacios o no tienen valor alguno ARRAYS =&#62;son variables que permiten varios valores posibles. tambien pueden llamarse, arreglos, listas o matrices ponemos un ejemplo la variable color de una camiseta, puede ser blanca, amarilla, roja, verde&#8230;. como vemosÂ una variable de un mismo elemento puede obtener distintos valores. en php declaramos arrays sencillos de esta manera: ...]]></description>
			<content:encoded><![CDATA[<div id="attachment_336" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.flashmania.es/wp-content/varios/curso_php.jpg"><img class="size-full wp-image-336" title="curso_php" src="http://www.flashmania.es/wp-content/varios/curso_php2.jpg" alt="CURSO PROFESIONAL DE PHP DE ACCESO PUBLICO" width="500" height="150" /></a><p class="wp-caption-text">CURSO PROFESIONAL DE PHP DE ACCESO PUBLICO</p></div>
<p><strong>CURSOS DIRECTOS: CURSO DE PHP V: CONCEPTOS DE PROGRAMACIÃ“N</strong></p>
<p>Bien en este capÃ­tulo del curso de programacion de php vamos a repasar algunos conceptos previso y que nos servirÃ¡ como base, para aprender cualquier lenguaje de programaciÃ³n. aunque algunos ya los hemos visto y son de evidente conocimiento, para los que ya sabemos programar. ahÃ­ os lo dejo para consulta o repaso.</p>
<p><strong>VARIABLE</strong></p>
<p>una definicion de variable es la ubicaciÃ³n temporal de memoria, donde el programador guarda determinado valor que le interesa retener durante la ejecuciÃ³n de algÃºn script.</p>
<p>dependiendo del lenguaje de programacion de declara de una manera u otra...</p>
<p>por ejemplo para php</p>
<div class="igBar"><span id="lcode-1"><a href="#" onclick="javascript:showCodeTxt('code-1'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-1">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;?php</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$variable = <span style="color:#CC0000;">"Hola mundo"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">?&gt;; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>por ejemplo para javascript (que proximamente veremos un cursillo intensivo)</p>
<div class="igBar"><span id="lcode-2"><a href="#" onclick="javascript:showCodeTxt('code-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-2">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var nombreVariable= valorVariable </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p><strong>TIPOS DE DATOS EN PROGRAMACIÃ“N</strong></p>
<p><strong>NUMEROS</strong> =&gt; Se tratan de numeros enteros o reales que a su vez pueden ser positivos, negativos y el cero, por supuesto!</p>
<p><strong>STRING </strong>=&gt; ya comenzamos con las palebrejas en inglÃ©s, un string es una cadena, traducciÃ³n literal y se refiere a datos que contienen cadenas de caracteres, osease, palabras, cadenas de texto.</p>
<p><strong>BOULEAN</strong> =&gt; serÃ­an buleanos, en castellano serian datos cuyos valores significan VERDADERO o FALSO</p>
<p><strong>NULL</strong> =&gt; son datos cuyo valores estan vacios o no tienen valor alguno</p>
<p><strong>ARRAYS</strong> =&gt;son variables que permiten varios valores posibles. tambien pueden llamarse, arreglos, listas o matrices ponemos un ejemplo</p>
<p>la variable color de una camiseta, puede ser blanca, amarilla, roja, verde....</p>
<p>como vemosÂ  una variable de un mismo elemento puede obtener distintos valores.</p>
<p>en php declaramos arrays sencillos de esta manera:</p>
<div class="igBar"><span id="lcode-3"><a href="#" onclick="javascript:showCodeTxt('code-3'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-3">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$dias<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#800000;color:#800000;">0</span><span style="color:#006600; font-weight:bold;">&#93;</span>=<span style="color:#CC0000;">"lunes"</span>;</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$dias<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#800000;color:#800000;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span>=<span style="color:#CC0000;">"martes"</span>;</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$dias<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#800000;color:#800000;">2</span><span style="color:#006600; font-weight:bold;">&#93;</span>=<span style="color:#CC0000;">"miercoles"</span>;</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$dias<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#800000;color:#800000;">3</span><span style="color:#006600; font-weight:bold;">&#93;</span>=<span style="color:#CC0000;">"jueves"</span>;</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">estos anteriores son arrays sencillos numerales</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">a continuaciÃ³n vamos a ver unos arrays de cadena de texto</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$empleados<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0000;">"empresaUno"</span><span style="color:#006600; font-weight:bold;">&#93;</span>=<span style="color:#CC0000;">"42"</span>;</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">otra manera de definira arrays mÃ¡s rapidamente serÃ­a:</div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$dias= array <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"lunes"</span>,<span style="color:#CC0000;">"martes"</span>,<span style="color:#CC0000;">"miercoles"</span>,<span style="color:#CC0000;">"jueves"</span>,<span style="color:#CC0000;">"viernes"</span>,<span style="color:#CC0000;">"sabado"</span>,<span style="color:#CC0000;">"domingo"</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#010101;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">teniendo en cuenta que la posicion del lunes es la posicion CERO! </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>estos son los principales que deberiamos de saber de momento no hemos vistos arrays dimensionales y otros mas complejos,</p>
<p><strong>OPERADORES EN PROGRAMACIÃ“N</strong></p>
<p><strong>MATEMATICOS</strong> =&gt; con estos nos permiten realizar calculos matematicos suma, resta, etc...<br />
Los simbolos<span class="syn_Symbol"> + - / *</span> permiten realizar las operaciones de suma, resta, divisiÃ³n y multiplicaciÃ³n. El sÃ­mbolo <span class="syn_Symbol">%</span> permite hallar el resto de una divisiÃ³n.</p>
<p><strong>COMPARACION</strong> =&gt; se usan para comparar una expresion con otra, dependiendo del leguaje de programaciÃ³n de realizarÃ¡ de una manera u otra<br />
El sÃ­mbolo <span class="syn_Symbol">=</span>= permite asignar valores a variables:<br />
<code> <code><span style="color: #000000;"> </span></code></code></p>
<p><strong>ASIGNACIÃ“N </strong>=&gt; se les asigana un valor a una expresiÃ³n.<br />
El sÃ­mbolo <span class="syn_Symbol">=</span> permite asignar valores a variables:<br />
<code> <code><span style="color: #000000;"> </span></code></code></p>
<p><strong>CON CADENA</strong> =&gt; como la concatenacion (que ya se viÃ³ en post anteriores).</p>
<p>El el prÃ³ximo veremos cositas mas avanzadas asi que a meterle caÃ±a chicos!</p>
<p><strong>Recurso web Ofrecido por Juan Garcia Delicado<br />
www.flashmania.es sugerencias en: webmaster@4cuarenta.com</strong><br />
<script type="text/javascript"><!--
google_ad_client = "pub-1979802506816137";
/* 468x60, creado 5/06/09 */
google_ad_slot = "3882832768";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmania.es/recursos_web/curso-de-php-v-conceptos-de-programacion/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

