Haber me he descargardo un sistema de noticias y esta funciona con php y MYSQL resulta,que quiero hacer una seccion igual, y eske kuando lo hago me aparece la misma base de datos en las 2 páginas , ¿ k tendria k crear otra base de datos kon otro nombre ? os dejo los codigos;
// here is the start html, <html><body> for example $start = '<html><head><title>News Flash</title></head><body bgcolor="#ffffff">'; // here is the end html that is put to document $end = '</body></html>'; // news template $tpl = '<font color ="#000000" size="1" Font="Verdana"><font face="Verdana"> <!--//%t=Date--> <!--//%s=Title or Subject--> <!--//%n=News--> <!--//%a=User or Posted by--> <b>%t - %s</b><br> <br> %n <br> <br> <b>Posted by %a</b> <br> <HR size="1" align="right" width="100%" color="7D889A"> <br> </font> '; echo $start;
mysql_connect($config['host'], $config['user'], $config['pass']) or die('Connection failed'); mysql_select_db($config['db']) or die('DB selection failed');
$max = mysql_fetch_array(mysql_query('SELECT MAX(id) FROM wootnews')); $max = $max['MAX(id)']+1;
while($result = mysql_fetch_array(mysql_query('SELECT * FROM wootnews WHERE id<' . $max . ' ORDER BY id DESC;'))) { echo str_replace(Array('%t', '%a', '%n', '%s'), Array($result['date'], $result['name'], $result['message'], $result['subject']), $tpl); $max = $result['id']; }
echo $end; ?>
DONDE LAS ESCRIBO;
Spoiler:
<head> <title>WootNews! Version 0.7</title> </head>
<BODY BGCOLOR=#336699 link="#000080" vlink="#000080" alink="#000080"> <font color ="FFFFFF" size="1" Font="Verdana"><font face="Verdana"><b>WootNews! Version 0.7</b></font> <?php
</font> </font> <p align="center"><font face="Verdana">WootNews! Version 0.7 Created by <a href="http://www.smeare.com">Smeare Design Studios</a></font></p> <p align="center"><font face="Verdana">Affordable Web Hosting Provided by <a href="http://www.hostdogs.com">HostDogs</a></font></p> <font face="Verdana"> </form>';?>
LA BASE DE DATOS E, CODIGO MYSQL;
Spoiler:
CREATE TABLE `wootnews` ( `id` int(11) NOT NULL auto_increment, `name` text NOT NULL, `message` longtext NOT NULL, `date` text NOT NULL, `subject` text NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM;
AAHHY LO SIETO LO ACABO DE VER !!! LO SIENTOOOOO , JODER SIMEPRE ME PASA LO MISMO, HAYY , BUEO TENIA K HABER CAMBIADO EL NOMBRE DE LA BASE, SI X FIN, GRACIAS DE TODAS MANERAS, JIJIJI
TU NO PUEDES Escribir nuevos temas TU NO PUEDES Responder a los temas TU NO PUEDES Editar tus propios mensajes TU NO PUEDES Borrar tus propios mensajes