Centrer un affichage de champ sql

Centrer un affichage de champ sql - PHP - Programmation

Marsh Posté le 11-11-2004 à 22:56:51    

:hello:  
Salut,
Comment centrer l'affichage d'un champ de ma base sql
Mon résultat d'affichage est toujours centré à G et je voudrais centré au millieu
MERCI


---------------
JPC
Reply

Marsh Posté le 11-11-2004 à 22:56:51   

Reply

Marsh Posté le 11-11-2004 à 23:15:53    

Ca n'a rien à voir avec PHP ou SQL ! [:shinji_kun64]

Reply

Marsh Posté le 12-11-2004 à 00:27:22    

+1, c'est du HTML, question suivante.

Reply

Marsh Posté le 12-11-2004 à 09:41:58    

naceroth a écrit :

+1, c'est du HTML, question suivante.


Ok on est d'accord  
Mais... j'affiche un tableau centré avec dedans les champs de texte centrés dans le tableau.
Le problème est dans l'affichage dans le champ de texte qui n'est pas centré  
http://membres.lycos.fr/aeroclubmarseille/champsql.htm
MERCI


---------------
JPC
Reply

Marsh Posté le 12-11-2004 à 10:19:58    

jpcoudert a écrit :

Ok on est d'accord  
Mais... j'affiche un tableau centré avec dedans les champs de texte centrés dans le tableau.
Le problème est dans l'affichage dans le champ de texte qui n'est pas centré  
http://membres.lycos.fr/aeroclubmarseille/champsql.htm
MERCI


bon, ben tu prends le premier cours de html que tu croises, et tu regardes ce que signifie text-align... :sarcastic:


---------------
Can't buy what I want because it's free -
Reply

Marsh Posté le 12-11-2004 à 13:22:09    

skeye a écrit :

bon, ben tu prends le premier cours de html que tu croises, et tu regardes ce que signifie text-align... :sarcastic:


J'y vais... à suivre.MERCI  :hello:


---------------
JPC
Reply

Marsh Posté le 13-11-2004 à 12:11:26    

skeye a écrit :

bon, ben tu prends le premier cours de html que tu croises, et tu regardes ce que signifie text-align... :sarcastic:


Je ne vois pas comment ajouter une commande HTML align au milieu du résultat de la requête PHP ?
 
<body>
 <p>
    <?php require_once('Connections/Connexion_MySQL.php'); ?>
     <?php
mysql_select_db($database_Connexion_MySQL, $Connexion_MySQL);
$query_Connexion_MySQL = "SELECT * FROM repertoire ORDER BY DATE ASC";
$Connexion_MySQL = mysql_query($query_Connexion_MySQL, $Connexion_MySQL) or die(mysql_error());
$row_Connexion_MySQL = mysql_fetch_assoc($Connexion_MySQL);
$totalRows_Connexion_MySQL = mysql_num_rows($Connexion_MySQL);
?>
</p>
   <?php  
$req = mysql_query("Select Priorite,Date,Entree,Sortie,Heure,Nom,Prenom,Sexe,Age,Actes,Praticien from repertoire Order by DATE Asc, HEURE Asc" );
?>
   
 </p>
 <table align=center width="1207" border=&raquo;1&raquo;>
  <tr>
    <td width="120"><div align="center"><strong>Priorit&eacute; Praticien </strong></div></td>
    <td width="100"><div align="center"><strong>Date</strong></div></td>
    <td width="100"><div align="center"><strong>Entr&eacute;e</strong></div></td>
    <td width="100"><div align="center"><b>Sortie</b></div></td>
    <td width="80"><div align="center"><b>Heure</b></div></td>
    <td width="130"><div align="center"><b>NOM</b></div></td>
    <td width="110"><div align="center"><b>Pr&eacute;nom</b></div></td>
    <td width="50"><div align="center"><b>Sexe</b></div></td>
    <td width="50"><div align="center"><b>Age</b></div></td>
    <td width="200"><div align="center"><b>Actes</b></div></td>
    <td width="120"><div align="center"><b>Praticien</b></div></td>
  </tr>
 
  <?php
for ($i = 0; $i < mysql_num_rows($req); $i++){
echo("<TR>" );
$row_array = mysql_fetch_row($req);
for ($j = 0; $j < mysql_num_fields($req); $j++) {
echo("<TD>". $row_array[$j]. "</td>" );
}
echo("</tr>" );
}
?>

</table>
<p>Actualisation de la table  : </p>
<form name="form1" method="post" action="clinique.php">
  <input type="submit" name="actual" value="Actualiser">
</form>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>
</html>
<?php
mysql_free_result($Connexion_MySQL);
?>
 :(


---------------
JPC
Reply

Marsh Posté le 13-11-2004 à 12:47:04    

<table style="text-align: center" width="1207" border=&raquo;1&raquo;>

Reply

Marsh Posté le 13-11-2004 à 15:05:18    

kalex a écrit :

<table style="text-align: center" width="1207" border=&raquo;1&raquo;>


Au poil.
SUPER MERCI
J'ai débuté PHP depuis hier et je rame un peu...
A+
JPC :hello:


---------------
JPC
Reply

Marsh Posté le 13-11-2004 à 15:12:56    

Une autre question sur la même page comment faire afficher la date au format jj/mm/aaaa  alors que la requête sur ma base  la renvoie au format anglo-saxon aaa/mm/jj ?
MERCI
JPC ;)


---------------
JPC
Reply

Marsh Posté le 13-11-2004 à 15:12:56   

Reply

Marsh Posté le 13-11-2004 à 15:13:44    

Euh tu pourrais chercher un peu avant de demander?


---------------
Can't buy what I want because it's free -
Reply

Marsh Posté le 13-11-2004 à 15:24:41    

jpcoudert a écrit :

Une autre question sur la même page comment faire afficher la date au format jj/mm/aaaa  alors que la requête sur ma base  la renvoie au format anglo-saxon aaa/mm/jj ?
MERCI
JPC ;)


Il faut regarder dans les syntaxes SQL pour qu'il te ressorte le resultat jj/mm/aaaa sans passer par php.  
sinon en php il faut cumuler c'est deux fonctions.
strotime et date.
 

Code :
  1. echo date("d/m/Y",strtotime(resultat de ma requette));


Reply

Marsh Posté le 13-11-2004 à 15:30:31    

Berceker United a écrit :

Il faut regarder dans les syntaxes SQL pour qu'il te ressorte le resultat jj/mm/aaaa sans passer par php.  
sinon en php il faut cumuler c'est deux fonctions.
strotime et date.
 

Code :
  1. echo date("d/m/Y",strtotime(resultat de ma requette));




MERCI
A+
JPC


---------------
JPC
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed