Creation d'un mini reseau social

Résolu/Fermé
bell_01 Messages postés 1 Date d'inscription mercredi 10 octobre 2012 Statut Membre Dernière intervention 12 octobre 2012 - 13 nov. 2012 à 18:24
irin1 Messages postés 35 Date d'inscription samedi 22 novembre 2014 Statut Membre Dernière intervention 8 mars 2023 - 10 déc. 2014 à 00:31
Bonjour,
comment ca va , je suis bell de tunisie etudiant en IsetMahdia en 3 eme anneés multimedia dvlp web . aime avoir comment crée un meni reseau social dans mon projet PFE , des tutorial(video, pdf ...)
e Merci bien


A voir également:

4 réponses

lanzari Messages postés 105 Date d'inscription lundi 20 juillet 2009 Statut Membre Dernière intervention 12 novembre 2017 13
13 nov. 2012 à 18:27
0
bell_01 Messages postés 1 Date d'inscription mercredi 10 octobre 2012 Statut Membre Dernière intervention 12 octobre 2012
13 nov. 2012 à 19:09
Meci
0
lanzari Messages postés 105 Date d'inscription lundi 20 juillet 2009 Statut Membre Dernière intervention 12 novembre 2017 13
14 nov. 2012 à 14:41
Sujet résolu ?
0
Non pas totalment !!!!
0
anthony-rassi Messages postés 30 Date d'inscription jeudi 2 janvier 2014 Statut Membre Dernière intervention 13 février 2014
8 févr. 2014 à 13:11
si tu veux il y a ning.com et grou.ps qui te permettent de creer un resaux social pour entreprise sinon il y a social go qui te permet de creer des un plus du genre discussion,chat...
0
AWV Messages postés 1 Date d'inscription mardi 13 novembre 2012 Statut Membre Dernière intervention 13 novembre 2012 1
Modifié par 00lina00 le 13/11/2012 à 23:02
Je vous conseil de vous tourner du coté du CMS Wordpress en vous appuyant sur le plugin social Buddypress qui est prévu pour créer ce genre de sites internet.

Cordialement,

Vincent
0
irin1 Messages postés 35 Date d'inscription samedi 22 novembre 2014 Statut Membre Dernière intervention 8 mars 2023
10 déc. 2014 à 00:31
Salut les amis
je veux votre aide; j'ai essayé de faire un mini reseau social mais voici l'erreur que j'ai:



Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\wamp\www\rs\index.php:1) in C:\wamp\www\rs\functions\connect.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\wamp\www\rs\index.php:1) in C:\wamp\www\rs\functions\connect.php on line 2

Warning: include(functions/.func.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\rs\index.php on line 8

Warning: include() [function.include]: Failed opening 'functions/.func.php' for inclusion (include_path='.;C:\php5\pear') in C:\wamp\www\rs\index.php on line 8

Warning: Cannot modify header information - headers already sent by (output started at C:\wamp\www\rs\index.php:1) in C:\wamp\www\rs\index.php on line 21

Warning: Cannot modify header information - headers already sent by (output started at C:\wamp\www\rs\index.php:1) in C:\wamp\www\rs\index.php on line 26

Warning: include() [function.include]: Failed opening '' for inclusion (include_path='.;C:\php5\pear') in C:\wamp\www\rs\index.php on line 37


voici le code pour ma page connection.php :

<?php
session_start();
//connexion é la base des données
mysql_connect('localhost','root','') or die(error);
mysql_select_db('rs') or die('Bdd introuvable');
mysql_query('SET NAMES utf8');
?>

Pour l'index.php :

<?php


include('functions/connect.php');

$page=htmlentities($_GET['page']);

include('functions/'.$page.'.func.php');

$pages=scandir('pages');


if(!empty($page)&& in_array($_GET['page'].".php",$pages))
{
$content='pages/'.$_GET['page'].".php";


}else{
header("Location:index.php?page=login");
}
if(!isset($_SESSION['pseudo']) && $page !='membre' && $page!= 'update' && $page != 'update_avatar')

{
header("Location:index.php?page=membre");
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='css/style.css'>
</head>
<body>
<div id='content'>
<?php
include($content);
?>
</div>
</body>
</html>

merci pour votre aide
0