Avatar Image
Machacateclados
Machacateclados

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;

donde aparecen las noticias...

Spoiler:

<?php

$config['host'] = 'mysql.webcindario.com';
$config['user'] = 'mi web';
$config['pass'] = 'mi contraseña';
$config['db'] = 'mi web';

// 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



$config['host'] = 'mysql.webcindario.com';
$config['user'] = 'miweb';
$config['pass'] = 'mi contraseña';
$config['db'] = 'miweb';

mysql_connect($config['host'], $config['user'], $config['pass']) or die('Connection failed');
mysql_select_db($config['db']) or die('DB selection failed');

if(isset($_POST['news']))
    {
    // name, message, date
    $message = $_POST['news'];
    $author = $_POST['author'];
    $date = date('F j Y');
        $subject = $_POST['subject'];
    mysql_query('INSERT INTO wootnews (name, message, date, subject) VALUES ("' . $author . '", "' . $message . '", "' . $date . '",  "' . $subject . '");') or $error = true;


    if(isset($error))
      echo 'There was error in adding news!<br><small>' . mysql_error() . '</small>';

    else
      echo 'News added succesfully';

    exit;
    }

echo '<form action="' . $PHP_SELF . '" method="POST"><font color ="FFFFFF" size="1" Font="Verdana"><font face="Verdana">
News<br><textarea style="border: 1px solid #666666; background: #C0C0C0; font-family: verdana; font-size: 9pt; color:#000000;"
 rows=10 cols=40 name="news">' . '</textarea>
<br>
Author<br><input style="border: 1px solid #666666; background: #C0C0C0; font-family: verdana; font-size: 9pt; color:#000000;" type="text" name="author">
<br>
Subject<br><input style="border: 1px solid #666666; background: #C0C0C0; font-family: verdana; font-size: 9pt; color:#000000;" type="text" name="subject"><br><br>
<input style="border: 1px solid #666666; background: #C0C0C0; font-family: verdana; font-size: 8pt; color:#000000;"
 type="submit" value="Post">


</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;

Avatar Image
@man / @woman
@man / @woman

En fin... no aprendes.

Ni en poner asuntos.

Ni en preguntar.

Ni en pensar.

Avatar Image
Machacateclados
Machacateclados

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:-/:-/

Este tema fue cerrado y no se pueden escribir nuevas respuestas
Opciones:
Ir al subforo:
Permisos:
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
Temas similares
No se han encontrado temas similares