View Single Post
(#3 (permalink))
Old
chigua chigua is offline
Junior Member
chigua is on a distinguished road
 
Posts: 13
Join Date: Jun 2008
Default 06-13-2008, 01:11 AM

Estimado Dpaladin:
He visitado sus websites,y por eso le consulto;el siguiente script php crea tablas y a creado tablas en otras web de 000.webhost.com Ejemplo vnet.890m.com

<?php
// Configura los datos de tu cuenta
$dbhost='localhost';
$dbusername='a6755379_chigua';
$dbuserpass='*********';
$dbname='a6755379_chigua';
// Conexión a la base de datos
mysql_connect ($dbhost, $dbusername, $dbuserpass);
// Seleccion de la base de datos
mysql_select_db($dbname) or die('Cannot select database');

// Creacion de la tabla (puedes elegir otros nombres para los campos)
$query = 'CREATE TABLE chigua(
id INT NOT NULL AUTO_INCREMENT,
PRIMARY KEY(id),
titulo VARCHAR(30) NOT NULL,
contenido VARCHAR(30) NOT NULL,
email VARCHAR(20) NOT NULL,
subtitulo VARCHAR(20) NOT NULL,
ID_lugar VARCHAR(20) NOT NULL,
t1 INT(4) NOT NULL)';
$result = mysql_query($query);
echo "!Tabla creada!";
?>

pero por alguna razon no esta creando las tablas en las versiones Ejemplo vnet.net78.net y dando el siguiente mensaje



PHP Error Message

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'a6755379_chigua'@'localhost' (using password: YES) in /home/a6755379/public_html/creacionchiguayante.php on line 8

Free Web Hosting

PHP Error Message

Warning: mysql_select_db() [function.mysql-select-db]: Access denied for user 'nobody'@'localhost' (using password: NO) in /home/a6755379/public_html/creacionchiguayante.php on line 10

Free Web Hosting

PHP Error Message

Warning: mysql_select_db() [function.mysql-select-db]: A link to the server could not be established in /home/a6755379/public_html/creacionchiguayante.php on line 10

Si sabe que pasa o esta ocurriendo le estare agradecido.

http://8118.890m.com/contacto.html

Last edited by dpaladin; 06-17-2008 at 07:43 PM.
Reply With Quote