Garcias amigo funciona a la perfeccion muchisimas gracias te debo una!
PD: Creo que si era por lo del Mysqli... xD.
Saludos
PD: Creo que si era por lo del Mysqli... xD.
Saludos
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
<?php
mysql_connect('localhost','root','admin');
mysql_select_db('root');
$result = mysql_query('SELECT * FROM mods')
or die(mysql_error());
while ($info= mysql_fetch_row($result)){
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MundoMCPE</title>
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="style.css"
type="text/css">
<link href="http://fonts.googleapis.com/css?family=ABeeZee"
rel="stylesheet" type="text/css">
<link href="bootstrap.css" rel="stylesheet"
type="text/css">
<link href="bootstrap-responsive.css" rel="stylesheet"
type="text/css">
</head>
<body>
<div class="container-fluid">
<div class="row-fluid"></div>
<div class="row-fluid">
<div class="span3 tiny">
<div class="pricing-table-header-tiny">
<h2><?php echo $info['name']; ?></h2>
<IMG SRC=<?php echo $info['thumbnail']; ?> ALT="some text" WIDTH=500 HEIGHT=300>
</div>
<div class="pricing-table-features">
<p><strong><?php echo $info['description']; ?> </strong></p>
<p><strong><strong> Autor: </strong> </strong><?php echo $info['autor']; ?></p>
<p><strong><strong> Descargas: </strong> </strong><?php echo $info['downloads']; ?></p>
<div class="pricing-table-signup-tiny">
<p><a href="view.php?id=<?php echo $info['id']; ?>"> Descargar </a></p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<?php
}
?>
Dim Str() As String
Str = Split(Text1.Text, vbNewLine)
If Len(Text2.Text) <> 0 Then
Text2.Text = Text2.Text & vbNewLine & Str(0)
Else
Text2.Text = Text2.Text & Str(0)
End If
Text1.Text = ""