Categoría: Tecnología al Día
Plataforma: LAMP Lenguajes: HTML, XHTML, XML, CSS, Javascript, PHP, MySql. CMS: WordPress Front End Apareciencia similar a http://es.groupalia.com/ Banners en el sidebar 125×125 o mas dependiendo Sugerencia de cupones en cada cupon, «Recomendamos tambien…» Identificacion de la conexion para mostrar anuncios por países, el anunciante marca el anuncio con el nombre de la ciudad, al
Plataforma: LAMP CMS: WordPress Front End Colores usados, negro, rojo, gris, blancos Pagina de inicio con disclaimer, opcional, recomendada El usuario dispone para hacer búsquedas en un formulario al estilo google en la pagina de búsqueda principal, con iconos para cada categoría, bloques informativos en la parte inferior, quienes somos, búsqueda por etiquetas, y link
Generalidades del Proyecto En la actualidad los sitios que ha dado como ejemplo carecen de ser optimizados mímimamente en su estructura para los buscadores, y mucho más poderlos fácilmente optimizar para ello Se propone un sitio web basado en WordPress ampliado y modificado para que funcione como un CMS que permita la publicación de anuncios
Generalidades del Proyecto Se propone una web con su panel de control específico para que usted suba sus productos digitales, sean en formato .doc , .pdf ,etc… Características Panel del Administrador Escritorio -Reporte de ventas en gráficos -> opcion de poner el sitio en mantenimiento Administrar Productos Reporte de Trasacciones Listado de Compradores Categorias Administrar
The Basics class Basic class definitions begin with the keyword class, followed by a class name, followed by a pair of curly braces which enclose the definitions of the properties and methods belonging to the class. The class name can be any valid label which is a not a PHP reserved word. A valid class
PHP comes standard with many functions and constructs. There are also functions that require specific PHP extensions compiled in, otherwise fatal «undefined function» errors will appear. For example, to use image functions such as imagecreatetruecolor(), PHP must be compiled with GD support. Or, to use mysql_connect(), PHP must be compiled with MySQL support. There are
PHP supports the concept of variable functions. This means that if a variable name has parentheses appended to it, PHP will look for a function with the same name as whatever the variable evaluates to, and will attempt to execute it. Among other things, this can be used to implement callbacks, function tables, and so
Values are returned by using the optional return statement. Any type may be returned, including arrays and objects. This causes the function to end its execution immediately and pass control back to the line from which it was called. See return() for more information. Note: If the return() is omitted the value NULL will be
Information may be passed to functions via the argument list, which is a comma-delimited list of expressions. PHP supports passing arguments by value (the default), passing by reference, and default argument values. Variable-length argument lists are also supported, see also the function references for func_num_args(), func_get_arg(), and func_get_args() for more information. Example #1 Passing arrays
<?php function recursion($a) { if ($a < 20) { echo «$a\n»; recursion($a + 1); } } ?>