Gestione record database

Salvo86

Nuovo Utente
12 Lug 2010
1
0
0
Salve a tutti, dovrei creare uno script per lagestione di alcune news per un sito. Voglio che vengano mostrate solo le ultime 10 news (ogni news rappresenta 1 record) e Dunque ho messo una select top 10. Ora però dovrei associare un record a ogni "form" (il form è dove visualizzo la news). Posto quello che ho scritto fino ad ora:
PHP:
<?php
   require 'config.php';
   require 'connessionedatabase.php';
   $sql = "SELECT * FROM Articoli ORDER BY ID_post DESC LIMIT 10";
   
   $result = mysql_query($sql);
   $array = mysql_fetch_array($result);
   $id = $array['ID_post'];
   $Titolo = $array['Titolo'];
   $Descrizione_breve = $array['Descrizione_breve'];
   
   
?> 

<html>
 <head></head>
 <body>
 <br />
 <center>
  <table width="90%" height="20%" border="1" cellspacing="0">
   //QUI DOVREI APRIRE IL RECORD 1
   <tr>
    <td width="90%" height="1.5%"> <p align="left"> <u><?php echo $Titolo ?></u></p></td>
   </tr>
   <tr>
    <th colspan="2" width="90%" height="17%"> <center> <img src="#" height="140" width="140" /> <?php echo $Descrizione_breve ?> </center> </th> 
   </tr>
   <tr>
    <th colspan="2" width="90%" height="1.5%"> <p align="left"> |<?php echo "<a href=\"$Titolo.php\"> Leggi... </a>" ?> | Compra | Modifica | Elimina | </p> </td>
   </tr>
  </table>
 <br />
  <table width="90%" height="20%" border="1" cellspacing="0">
   //QUI DOVREI APRIRE IL RECORD 2
   <tr>
    <td width="90%" height="1.5%"> <p align="left"> <u><?php echo $Titolo ?></u></p></td>
   </tr>
   <tr>
    <th colspan="2" width="90%" height="17%"> <center> <img src="#" height="140" width="140" /> <?php echo $Descrizione_breve ?> </center> </th> 
   </tr>
   <tr>
    <th colspan="2" width="90%" height="1.5%"> <p align="left"> |<?php echo "<a href=\"$Titolo.php\"> Leggi... </a>" ?> | Compra | Modifica | Elimina | </p> </td>
   </tr>
  </table>
 </center>
  </br>
 </body>
</html>

Grazie
 

satifal

Utente Attivo
25 Set 2008
522
13
0
Roma
Prova una cosa del genere:

PHP:
<?php
require 'config.php';
require 'connessionedatabase.php';

$sql = "SELECT * FROM Articoli ORDER BY ID_post DESC LIMIT 10";

$result = mysql_query($sql);
?>

<html>
	<head></head>
	<body>
 		<br />
		<center>

<?php
			while ($record = mysql_fetch_array($result)) {
				$id = $record['ID_post'];
				$Titolo = $record['Titolo'];
				$Descrizione_breve = $record['Descrizione_breve'];
				
				echo '
				  <table width="90%" height="20%" border="1" cellspacing="0">
				   <tr>
				    <td width="90%" height="1.5%"><p align="left"><u>$Titolo</u></p></td>
				   </tr>
				   <tr>
				    <th colspan="2" width="90%" height="17%"><center><img src="#" height="140" width="140" />$Descrizione_breve</center></th> 
				   </tr>
				   <tr>
				    <th colspan="2" width="90%" height="1.5%"><p align="left"> | <a href="$Titolo.php">Leggi...</a> | Compra | Modifica | Elimina | </p></td>
				   </tr>
				  </table>
				 <br />
				';
			}
?> 

		</center>
 		<br />
	</body>
</html>

Non l'ho testato per cui potrebbero esserci degli errori.
 
Discussioni simili
Autore Titolo Forum Risposte Data
A Gestione array multidimensionale PHP 6
andreas88 Gestione Profilo OnlyFans Leggi, Normative e Fisco 0
A Creazione cookie e gestione accessi PHP 0
B form gestione input PHP 2
sbolde91 Consiglio gestione Hosting Hosting 2
E Gestione profilo utente tramite Form PHP 3
S cerco esperto gestione ecommerce Offerte e Richieste di Lavoro e/o Collaborazione 0
P Curiosità su grandi aziende e la gestione delle grafiche. Discussioni Varie 1
M Consiglio sulla gestione di Gerarchie Database 0
A attributo "min" per input gestione date PHP 8
L Gestione DB ASP.NET 2
L Consiglio SEO gestione dominio + free hosting SEO e Posizionamento 6
avalon95 [WordPress] Gestione database annunci WordPress 0
G [PHP] gestione mouse PHP 2
B Gestione Prenotazioni con Mysql Database 21
D CREAZIONE E GESTIONE SITO E-COMMERCE Offerte e Richieste di Lavoro e/o Collaborazione 2
P (Cerco) Collaboratori per gestione social media Offerte e Richieste di Lavoro e/o Collaborazione 5
psicomia Gestione funzione in javascript in tabella richiamare"textarea" valori preimpostati in "select" Javascript 2
brasoft2019 [PHP] Sistema di gestione presenze PHP 29
W Preventivo gestione ecommerce Discussioni Varie 1
E Cerco partner / socio per gestione sito di annunci incontri Offerte e Richieste di Lavoro e/o Collaborazione 0
K e-commerce per distribuzione e dettaglio con gestione magazzino E-Commerce 0
G [MS Access] Gestione biglietti [RISOLTO] MS Access 2
Jonn [WordPress] Gestione categorie e tags per sito eventi WordPress 2
felino Gestione dispositivi e Altri dispositivi Windows e Software 4
D Software per gestione account facebook? Social Media Marketing 1
D Cero Software Facebook gestione account Vendere e Acquistare pubblicita' online 0
M Offro servizio Incremento Follower e Gestione Profili Istagram Offerte e Richieste di Lavoro e/o Collaborazione 0
S elementi statistici - Matrice e Gestione Array PHP o Javascript Javascript 0
J [offro] hosting / installazione certificati ssl / gestione server Offerte e Richieste di Lavoro e/o Collaborazione 0
F [PHP] gestione meteo manuale per un gioco di ruolo PHP 1
bianca_dimulescu Gestione tabella e MySQL PHP 4
T Servizio gestione pagina Instagram Offerte e Richieste di Lavoro e/o Collaborazione 0
G Gestione e/o vendita hosting come libero professionista Leggi, Normative e Fisco 4
MatMac System [PHP] Gestione dinamica select-option PHP 3
xone [Vendo] Script gestionale php-mysql gestione pratiche Altri Annunci 0
S [PHP] Gestione coupon PHP 3
lxella [PHP] Aree riservate e gestione utenti PHP 1
D Gestione punteggi php PHP 1
B Cercasi socio per gestione sito web Offerte e Richieste di Lavoro e/o Collaborazione 0
G gestione pagina facebook Social Media Marketing 0
Cavalinho08 [Offro gestione pagine instagram, prezzo bassissimo] Annunci servizi di Social Media Marketing 3
D [VENDO] Gestione account instagram Annunci servizi di Social Media Marketing 2
N [VENDO] Gestione pagine FB Annunci servizi di Social Media Marketing 2
ientii [PHP] Gestione CheckBox PHP 1
W Consiglio su gestione di un form con XMLHttpRequest Ajax 0
booklisa Compressione immagini e gestione media CMS (Content Management System) 1
T gestione livelli sessioni php msqli PHP 1
giuseppe_123 [PHP] Gestione corsi PHP 1
A [WordPress] Plugin gestione ordine prodotto. WordPress 0

Discussioni simili