bonjour, j'ai ceci comme code
celui-ci est inclu dans une div dans ma page documents.php, mais lorsque je veux remettre la même fonction (avec une modification dans le SELECT pour avoir une autre table) il me le refuse en disant que la fonction existe déjà dans cette page...
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 function readDataForwards($bdd){ $sql='SELECT numero, nom_client,date_offre FROM _1offre_de_prix ORDER BY numero DESC '; try{ $stmt=$bdd->prepare($sql,array(PDO::ATTR_CURSOR,PDO::CURSOR_SCROLL)); $stmt->execute(); while($row=$stmt->fetch(PDO::FETCH_NUM, PDO::FETCH_ORI_NEXT)){ $data="- \n Numero offre:\n <font color='#ff1493'>".$row[0]."</font>,\n Nom client:\n <font color='blue'>".$row[1]."</font>,\n Date offre:\n <font color='red'>".$row[2]."</font>. <br>"; print $data; } $stmt=null; }catch(PDOException $e){ print $e->getMessage(); } } readDataForwards($bdd);
Comment puis-je faire?Cannot redeclare readDataForwards() (previously declared in C:\wamp\www\Jung-Distribution\affichage_Script_documents_jung.php:18) in C:\wamp\www\Jung-Distribution\affichage_Script_BLF_documents_jung.php on line 24
Call Stack
merci de vos réponses
Partager