Afficher fichier pdf dans mon navigateur
Résolu/Fermé
stephane07
Messages postés
172
Date d'inscription
dimanche 3 octobre 2010
Statut
Membre
Dernière intervention
6 février 2014
-
26 nov. 2012 à 13:14
stephane07 Messages postés 172 Date d'inscription dimanche 3 octobre 2010 Statut Membre Dernière intervention 6 février 2014 - 27 nov. 2012 à 01:32
stephane07 Messages postés 172 Date d'inscription dimanche 3 octobre 2010 Statut Membre Dernière intervention 6 février 2014 - 27 nov. 2012 à 01:32
A voir également:
- Afficher fichier pdf dans mon navigateur
- Lire le coran en français pdf - Télécharger - Histoire & Religion
- Fichier rar - Guide
- Comment faire un fichier pdf - Guide
- Comment compresser un fichier pdf - Guide
- Comment ouvrir un fichier epub ? - Guide
9 réponses
Lord Zero
Messages postés
459
Date d'inscription
lundi 18 octobre 2010
Statut
Membre
Dernière intervention
15 juin 2018
115
26 nov. 2012 à 15:24
26 nov. 2012 à 15:24
<a href="ton pdf.pdf>titre pdf</a>
stephane07
Messages postés
172
Date d'inscription
dimanche 3 octobre 2010
Statut
Membre
Dernière intervention
6 février 2014
1
26 nov. 2012 à 18:02
26 nov. 2012 à 18:02
le fichier se trouve dans une base de données mysql
Lord Zero
Messages postés
459
Date d'inscription
lundi 18 octobre 2010
Statut
Membre
Dernière intervention
15 juin 2018
115
26 nov. 2012 à 18:22
26 nov. 2012 à 18:22
<a href="$ton pdf.pdf>$titre pdf</a>
Lord Zero
Messages postés
459
Date d'inscription
lundi 18 octobre 2010
Statut
Membre
Dernière intervention
15 juin 2018
115
26 nov. 2012 à 20:03
26 nov. 2012 à 20:03
<?php $db = mysql_connect('localhost', 'root', ''); mysql_select_db('test',$db); $sql = 'SELECT * FROM fichier_pdf'; $req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error()); while($data = mysql_fetch_assoc($req)) { echo '<a href="'.$data['fichier'].'">'.$data['nom'].'</a>'; } mysql_close(); ?>
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
stephane07
Messages postés
172
Date d'inscription
dimanche 3 octobre 2010
Statut
Membre
Dernière intervention
6 février 2014
1
26 nov. 2012 à 22:46
26 nov. 2012 à 22:46
Merci, j'avais déjà elaboré un code quand je l'execute j'ai comme erreur une variable non défini au niveau du paramètre $_FILES. Pouriez vous m'aider à corriger mon code. Télécharger mon fichier index.php à cette adresse https://www.cjoint.com/?3KAwSDAsSNv
aomann
Messages postés
51
Date d'inscription
lundi 26 novembre 2012
Statut
Membre
Dernière intervention
4 décembre 2012
2
Modifié par aomann le 26/11/2012 à 23:00
Modifié par aomann le 26/11/2012 à 23:00
Impossible de lire le fichier... Il est "exécuté".
stephane07
Messages postés
172
Date d'inscription
dimanche 3 octobre 2010
Statut
Membre
Dernière intervention
6 février 2014
1
26 nov. 2012 à 23:29
26 nov. 2012 à 23:29
bon j'envoie en fichier compressé https://www.cjoint.com/?3KAxCW27MvV
stephane07
Messages postés
172
Date d'inscription
dimanche 3 octobre 2010
Statut
Membre
Dernière intervention
6 février 2014
1
27 nov. 2012 à 00:42
27 nov. 2012 à 00:42
# ----------------------------FICHIER index.php
<?php
require_once("connexion.php");
$requete2="SELECT type_document_code, type_document_libel FROM type_document";
$resultat2=mysql_query($requete2);
if(isset($_POST['send']))
{
$data = file_get_contents($_FILES["doc_numerisation"]["tmp_name"]);
$requete="INSERT INTO document SET doc_code='".$_POST['doc_code']."', doc_auteur='".$_POST['doc_auteur']."', doc_titre='".$_POST['doc_titre']."', doc_edition='".$_POST['doc_edition']."', doc_nbre_page='".$_POST['doc_nbre_page']."', issn='".$_POST['issn']."', doc_dat_publicat='".$_POST['doc_dat_publicat']."', doc_niv_diff='".$_POST['doc_niv_diff']."', doc_dispo='".$_POST['doc_dispo']."', doc_numerisation='".mysql_escape_string("$data")."' ";
$resultat=mysql_query($requete);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Centre de Documentation</title>
</head>
<body>
<form id="docform" name="formdoc" method="post" action="index.php" enctype="multipart/form_data">
<table width="600" border="0" cellspacing="0" cellpadding="5" align="center">
<tr>
<td>
Type document:
</td>
<td colspan=5>
<select name="type_doc_libelle">
<?php while($document2=mysql_fetch_array($resultat2)) { ?>
<option><?php echo $document2['type_document_libel'];?></option>
<?php } ?>
</select>
</td>
</tr>
<tr>
<td>
code:
</td>
<td>
<input type="text" name="doc_code" />
</td>
<td>
titre:
</td>
<td>
<input type="text" name="doc_titre"/>
</td>
<td>
auteur:
</td>
<td>
<input type="text" name="doc_auteur"/>
</td>
</tr>
<tr>
<td nowrap="deprecated">
Edition:
</td>
<td>
<input type="text" name="doc_edition"/>
</td>
<td nowrap="deprecated">
nbre de Page:
</td>
<td>
<input type="text" name="doc_nbre_page"/>
</td>
<td nowrap="deprecated">
ISSN:
</td>
<td>
<input type="text" name="issn"/>
</td>
</tr>
<tr>
<td nowrap="deprecated">
date publication:
</td>
<td>
<input type="text" name="doc_dat_publicat"/>
</td>
<td nowrap="deprecated">
Disponibilité:
</td>
<td>
<input type="text" name="doc_dispo"/>
</td>
<td>
niveau diffusion:
</td>
<td>
<input type="text" name="doc_niv_diff"/>
</td>
</tr>
<tr>
<td nowrap="deprecated">
</td>
<td>
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
</td>
<td>
<input type="file" name="file" />
</td>
<td>
</td>
<td>
</td>
<td>
<input type="submit" name="send" value="Envoyer"/>
</td>
</tr>
</table>
</form>
</form>
</body>
</html>
<?php
require_once("connexion.php");
$requete2="SELECT type_document_code, type_document_libel FROM type_document";
$resultat2=mysql_query($requete2);
if(isset($_POST['send']))
{
$data = file_get_contents($_FILES["doc_numerisation"]["tmp_name"]);
$requete="INSERT INTO document SET doc_code='".$_POST['doc_code']."', doc_auteur='".$_POST['doc_auteur']."', doc_titre='".$_POST['doc_titre']."', doc_edition='".$_POST['doc_edition']."', doc_nbre_page='".$_POST['doc_nbre_page']."', issn='".$_POST['issn']."', doc_dat_publicat='".$_POST['doc_dat_publicat']."', doc_niv_diff='".$_POST['doc_niv_diff']."', doc_dispo='".$_POST['doc_dispo']."', doc_numerisation='".mysql_escape_string("$data")."' ";
$resultat=mysql_query($requete);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Centre de Documentation</title>
</head>
<body>
<form id="docform" name="formdoc" method="post" action="index.php" enctype="multipart/form_data">
<table width="600" border="0" cellspacing="0" cellpadding="5" align="center">
<tr>
<td>
Type document:
</td>
<td colspan=5>
<select name="type_doc_libelle">
<?php while($document2=mysql_fetch_array($resultat2)) { ?>
<option><?php echo $document2['type_document_libel'];?></option>
<?php } ?>
</select>
</td>
</tr>
<tr>
<td>
code:
</td>
<td>
<input type="text" name="doc_code" />
</td>
<td>
titre:
</td>
<td>
<input type="text" name="doc_titre"/>
</td>
<td>
auteur:
</td>
<td>
<input type="text" name="doc_auteur"/>
</td>
</tr>
<tr>
<td nowrap="deprecated">
Edition:
</td>
<td>
<input type="text" name="doc_edition"/>
</td>
<td nowrap="deprecated">
nbre de Page:
</td>
<td>
<input type="text" name="doc_nbre_page"/>
</td>
<td nowrap="deprecated">
ISSN:
</td>
<td>
<input type="text" name="issn"/>
</td>
</tr>
<tr>
<td nowrap="deprecated">
date publication:
</td>
<td>
<input type="text" name="doc_dat_publicat"/>
</td>
<td nowrap="deprecated">
Disponibilité:
</td>
<td>
<input type="text" name="doc_dispo"/>
</td>
<td>
niveau diffusion:
</td>
<td>
<input type="text" name="doc_niv_diff"/>
</td>
</tr>
<tr>
<td nowrap="deprecated">
</td>
<td>
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
</td>
<td>
<input type="file" name="file" />
</td>
<td>
</td>
<td>
</td>
<td>
<input type="submit" name="send" value="Envoyer"/>
</td>
</tr>
</table>
</form>
</form>
</body>
</html>
stephane07
Messages postés
172
Date d'inscription
dimanche 3 octobre 2010
Statut
Membre
Dernière intervention
6 février 2014
1
27 nov. 2012 à 01:32
27 nov. 2012 à 01:32
que c'est parfois frustrant de savoir qu'on se retarde par inattention....pffffff je devais mettre dans enctype "form-data" au lieu de "form_data".
Merci à tous et pour tout
Merci à tous et pour tout