begin process at 2012 05 31 05:48:52
  Trouver un code source :
 
dans
 
Accueil > Forum > 

PHP

 > 

Divers

 > 

Général

 > 

php ( mixe ) javascript


Derniers messages déposésPoser une question dans le forum ou lancer une discussion

php ( mixe ) javascript

lundi 29 août 2011 à 04:07:35 | php ( mixe ) javascript

medanass



Bsr les Amis ,

pourriez vos m'aidé SVP, mon problème c'est que je veux affecter a ma fonction java Script une chaîne de caractère qui est déjà définie dans mon fichier "lib.php"[color=orange] .
Merci
lundi 29 août 2011 à 11:19:41 | Re : php ( mixe ) javascript

coucou747

Administrateur CodeS-SourceS
Bonjour,

var v = "<?php echo addslashes($truc); ?>";

Cordialement,

Maxime
lundi 29 août 2011 à 12:28:42 | Re : php ( mixe ) javascript

medanass



...................................................................

Merci ,mais sa ne marche toujours pas ,est ce que je ne suis pas obligé t'attaché le var a récupéré et le nom de fichier
exemple avec cette méthode : document.location = "rsslib.php?str=" + a;
car j'ai deux fichier index.html(qui contient le code java script) et rsslib.php qui contient bien sure le code php .

....................................................Merci d'avance .
lundi 29 août 2011 à 12:31:47 | Re : php ( mixe ) javascript

coucou747

Administrateur CodeS-SourceS
Bonjour,

Je n'ai rien compris.

Ton message n'a aucun sens.

Donne un bout de code, et écrit correctement si tu veux une réponse claire.
lundi 29 août 2011 à 13:03:49 | Re : php ( mixe ) javascript

medanass




hh oki ,bon voila mon fichier rsslib.php :


<?php
$RSS_Content = array();
$description;

function RSS_Tags($item, $type)
{
$y = array();
$tnl = $item->getElementsByTagName("title");
$tnl = $tnl->item(0);
$title = $tnl->firstChild->textContent;

$tnl = $item->getElementsByTagName("link");
$tnl = $tnl->item(0);
$link = $tnl->firstChild->textContent;

$tnl = $item->getElementsByTagName("description");
$tnl = $tnl->item(0);
$description = $tnl->firstChild->textContent;

$y["title"] = $title;
$y["link"] = $link;
$y["description"] = $description;
$y["type"] = $type;

return $y;
}


function RSS_Channel($channel)
{
global $RSS_Content;

$items = $channel->getElementsByTagName("item");

// Processing channel

$y = RSS_Tags($channel, 0); // get description of channel, type 0
array_push($RSS_Content, $y);

// Processing articles

foreach($items as $item)
{
$y = RSS_Tags($item, 1); // get description of article, type 1
array_push($RSS_Content, $y);
}
}

function RSS_Retrieve($url)
{
global $RSS_Content;

$doc = new DOMDocument();
$doc->load($url);

$channels = $doc->getElementsByTagName("channel");

$RSS_Content = array();

foreach($channels as $channel)
{
RSS_Channel($channel);
}

}


function RSS_RetrieveLinks($url)
{
global $RSS_Content;

$doc = new DOMDocument();
$doc->load($url);

$channels = $doc->getElementsByTagName("channel");

$RSS_Content = array();

foreach($channels as $channel)
{
$items = $channel->getElementsByTagName("item");
foreach($items as $item)
{
$y = RSS_Tags($item, 1); // get description of article, type 1
array_push($RSS_Content, $y);
}

}

}


function RSS_Links($url, $size = 15)
{
global $RSS_Content;

$page = "<ul>";

RSS_RetrieveLinks($url);
if($size > 0)
$recents = array_slice($RSS_Content, 0, $size + 1);

foreach($recents as $article)
{
$type = $article["type"];
if($type == 0) continue;
$title = $article["title"];
$link = $article["link"];
$page .= "<li><a href=\"$link\">$title</a></li>\n";
}

$page .="</ul>\n";

return $page;

}



function RSS_Display($url, $size = 15, $site = 0)
{
global $RSS_Content;

$opened = false;
$page = "";
$site = (intval($site) == 0) ? 1 : 0;

RSS_Retrieve($url);
if($size > 0)
$recents = array_slice($RSS_Content, $site, $size + 1 - $site);

foreach($recents as $article)
{
$type = $article["type"];
if($type == 0)
{
if($opened == true)
{
$page .="</ul>\n";
$opened = false;
}
$page .="<b>";
}
else
{
if($opened == false)
{
$page .= "<ul>\n";
$opened = true;
}
}
$title = $article["title"];
$link = $article["link"];
$description = $article["description"];
$page .= "<li><a href=\"$link\">$title</a>";
if($description != false)
{

$a='[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> ';
$page .= $a."$description";
}
$page .= "</div></li>\n";

if($type==0)
{
$page .="</b><br />";
}

}

if($opened == true)
{
$page .="</ul>\n";
}

$a = $page;

return $page."\n";

}


?>

et voila ma page html avec le Java Script :

<title>CNRST</title>
<head>

<script type="text/javascript">
function Suite(lien){

var objet = document.getElementById('popup'); // entre les deux ' tu mes le nom du div que tu veux faire apparaître !





if(objet.style.display == "none" || !objet.style.display){
C'est ici que je veut affiché mon var $description qui se trouve dans le fichier rsslib exactement dans la fonction RSS_Display ---->
objet.innerHTML = var v = "<?php echo addslashes($description); ?>";
objet.style.display = "block";
objet.style.overflow = "hidden";
lien.innerHTML = "-";

var hFinal = 200; //Hauteur finale (la hauteur une fois que ça aura fini de déplier !)
var hActuel = 0; //Hauteur initiale (la hauteur dès le début !)

var timer;
var fct = function ()
{
hActuel += 20; //Augmente la hauteur de 20px (tu peux modifier) tous les 40ms !

objet.style.height = hActuel + 'px';

if( hActuel > hFinal)
{
clearInterval(timer); //Arrête le timer
objet.style.overflow = 'inherit';
}
};
fct();


timer = setInterval(fct,40); //Toute les 40 ms

}else if(objet.style.display == "block"){

var hFinal = 0; //Hauteur finale (la hauteur une fois que ça aura fini de déplier !)
var hActuel = 200; //Hauteur initiale (la hauteur dès le début !)

var timer;
var fct = function ()
{
hActuel -= 20; //Augmente la hauteur de -20px (tu peux modifier) tous les 40ms !

objet.style.height = hActuel + 'px';

if( hActuel < hFinal)
{
clearInterval(timer); //Arrête le timer
objet.style.overflow = 'inherit';
objet.style.display = "none";
}
};
fct();


timer = setInterval(fct,40); //Toute les 40 ms


lien.innerHTML = "+";

}
}
</script>

</head>

<body > //background="index1.jpg"

<br /><br /><br />
<table width="712" height="71" border="10" bordercolor="#990000" bgcolor="#FFFFFF">

<h1>CERT-CNRST</h1>

<hr>
<div id="zone" > Chargement du flux</div>


<br>
<fieldset class="rsslib">
<?php
require_once("rsslib.php");
$url = "http://www.exploit-db.com/feed/";
echo RSS_Display($url, 15, false, true);
?>

</fieldset>
</table>
<br />
<blockquote>@Version d'evaluation </blockquote>
lundi 29 août 2011 à 13:44:50 | Re : php ( mixe ) javascript

medanass


hh oki ,bon voila mon fichier rsslib.php :

Code PHP :
<?php 
$RSS_Content = array(); 
$description; 

function RSS_Tags($item, $type) 
{ 
$y = array(); 
$tnl = $item->getElementsByTagName("title"); 
$tnl = $tnl->item(0); 
$title = $tnl->firstChild->textContent; 

$tnl = $item->getElementsByTagName("link"); 
$tnl = $tnl->item(0); 
$link = $tnl->firstChild->textContent; 

$tnl = $item->getElementsByTagName("description"); 
$tnl = $tnl->item(0); 
$description = $tnl->firstChild->textContent; 

$y["title"] = $title; 
$y["link"] = $link; 
$y["description"] = $description; 
$y["type"] = $type; 

return $y; 
} 


function RSS_Channel($channel) 
{ 
global $RSS_Content; 

$items = $channel->getElementsByTagName("item"); 

// Processing channel 

$y = RSS_Tags($channel, 0); // get description of channel, type 0 
array_push($RSS_Content, $y); 

// Processing articles 

foreach($items as $item) 
{ 
$y = RSS_Tags($item, 1); // get description of article, type 1 
array_push($RSS_Content, $y); 
} 
} 

function RSS_Retrieve($url) 
{ 
global $RSS_Content; 

$doc = new DOMDocument(); 
$doc->load($url); 

$channels = $doc->getElementsByTagName("channel"); 

$RSS_Content = array(); 

foreach($channels as $channel) 
{ 
RSS_Channel($channel); 
} 

} 


function RSS_RetrieveLinks($url) 
{ 
global $RSS_Content; 

$doc = new DOMDocument(); 
$doc->load($url); 

$channels = $doc->getElementsByTagName("channel"); 

$RSS_Content = array(); 

foreach($channels as $channel) 
{ 
$items = $channel->getElementsByTagName("item"); 
foreach($items as $item) 
{ 
$y = RSS_Tags($item, 1); // get description of article, type 1 
array_push($RSS_Content, $y); 
} 

} 

} 


function RSS_Links($url, $size = 15) 
{ 
global $RSS_Content; 

$page = "<ul>"; 

RSS_RetrieveLinks($url); 
if($size > 0) 
$recents = array_slice($RSS_Content, 0, $size + 1); 

foreach($recents as $article) 
{ 
$type = $article["type"]; 
if($type == 0) continue; 
$title = $article["title"]; 
$link = $article["link"]; 
$page .= "<li><a href=\"$link\">$title</a></li>\n"; 
} 

$page .="</ul>\n"; 

return $page; 

} 



function RSS_Display($url, $size = 15, $site = 0) 
{ 
global $RSS_Content; 

$opened = false; 
$page = ""; 
$site = (intval($site) == 0) ? 1 : 0; 

RSS_Retrieve($url); 
if($size > 0) 
$recents = array_slice($RSS_Content, $site, $size + 1 - $site); 

foreach($recents as $article) 
{ 
$type = $article["type"]; 
if($type == 0) 
{ 
if($opened == true) 
{ 
$page .="</ul>\n"; 
$opened = false; 
} 
$page .="<b>"; 
} 
else 
{ 
if($opened == false) 
{ 
$page .= "<ul>\n"; 
$opened = true; 
} 
} 
$title = $article["title"]; 
$link = $article["link"]; 
$description = $article["description"]; 
$page .= "<li><a href=\"$link\">$title</a>"; 
if($description != false) 
{ 

$a='[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> '; 
$page .= $a."$description"; 
} 
$page .= "</div></li>\n"; 

if($type==0) 
{ 
$page .="</b><br />"; 
} 

} 

if($opened == true) 
{ 
$page .="</ul>\n"; 
} 

$a = $page; 

return $page."\n"; 

} 


?> 


et voila ma page html avec le Java Script :
Code Javascript :
<title>CNRST</title> 
<head> 

<script type="text/javascript"> 
function Suite(lien){ 

var objet = document.getElementById('popup'); // entre les deux ' tu mes le nom du div que tu veux faire apparaître ! 





if(objet.style.display == "none" || !objet.style.display){ 
[color=orange]C'est ici que je veut affiché mon var $description qui se trouve dans le fichier rsslib exactement dans la fonction RSS_Display ----> [/color]
objet.innerHTML = var v = "<?php echo addslashes($description); ?>"; 
objet.style.display = "block"; 
objet.style.overflow = "hidden"; 
lien.innerHTML = "-"; 

var hFinal = 200; //Hauteur finale (la hauteur une fois que ça aura fini de déplier !) 
var hActuel = 0; //Hauteur initiale (la hauteur dès le début !) 

var timer; 
var fct = function () 
{ 
hActuel += 20; //Augmente la hauteur de 20px (tu peux modifier) tous les 40ms ! 

objet.style.height = hActuel + 'px'; 

if( hActuel > hFinal) 
{ 
clearInterval(timer); //Arrête le timer 
objet.style.overflow = 'inherit'; 
} 
}; 
fct(); 


timer = setInterval(fct,40); //Toute les 40 ms 

}else if(objet.style.display == "block"){ 

var hFinal = 0; //Hauteur finale (la hauteur une fois que ça aura fini de déplier !)
var hActuel = 200; //Hauteur initiale (la hauteur dès le début !) 

var timer; 
var fct = function () 
{ 
hActuel -= 20; //Augmente la hauteur de -20px (tu peux modifier) tous les 40ms ! 

objet.style.height = hActuel + 'px'; 

if( hActuel < hFinal) 
{ 
clearInterval(timer); //Arrête le timer 
objet.style.overflow = 'inherit'; 
objet.style.display = "none"; 
} 
}; 
fct(); 


timer = setInterval(fct,40); //Toute les 40 ms 


lien.innerHTML = "+"; 

} 
} 
</script> 

</head> 

<body > //background="index1.jpg" 

<br /><br /><br /> 
<table width="712" height="71" border="10" bordercolor="#990000" bgcolor="#FFFFFF"> 

<h1>CERT-CNRST</h1> 

<hr> 
<div id="zone" > Chargement du flux</div> 


<br> 
<fieldset class="rsslib"> 
<?php 
require_once("rsslib.php"); 
$url = "http://www.exploit-db.com/feed/"; 
echo RSS_Display($url, 15, false, true); 
?> 

</fieldset> 
</table> 
<br /> 
<blockquote>@Version d'evaluation </blockquote> 
lundi 29 août 2011 à 13:59:06 | Re : php ( mixe ) javascript

coucou747

Administrateur CodeS-SourceS
ça c'est pas du javascript...
objet.innerHTML = var v = "<?php echo addslashes($description); ?>";

essaie ça :

objet.innerHTML = "<?php echo addslashes($description); ?>";

La variable description odit-etre dans le meme fichier, sinon, tu ne peux pas y acceder.

si ça ne fonctionne pas, envoie ton code javascript, apres préprocessing du php (celui que tu vois avec affichage source.)
lundi 29 août 2011 à 14:22:10 | Re : php ( mixe ) javascript

medanass




Désoler pour le dérangement mais sa ne marche pas , ici vous allé trouvé le code source de l&#8217;exécution de ma page et j'ai remarqué qu'il arrive a affiché le contenu de $descrption mais c'est le Script qui ne fonction pas (je pense :p ) bon voila :
Code HTML :
<title>CNRST</title>

<head>



<script type="text/javascript">

function Suite(lien){

	

	var objet = document.getElementById('popup'); // entre les deux ' tu mes le nom du div que tu veux faire apparaître !

	

	//document.location = "rsslib.php?str=" + a;

     

	  

	  

	if(objet.style.display == "none" || !objet.style.display){

		

		objet.innerHTML = "<br />
<b>Notice</b>:  Undefined variable: description in <b>C:\Program Files\EasyPHP-5.3.6.1\CertMarwan\page_test_link - Copie.php</b> on line <b>15</b><br />
";

		objet.style.display = "block";

		objet.style.width=500px;

		<Blink> bju </Blink>;

		objet.style.overflow = "hidden"; 

		lien.innerHTML = "-";

       

        var hFinal      =     200;  //Hauteur finale (la hauteur une fois que ça aura fini de déplier !)

        var hActuel     =     0;	 	//Hauteur initiale (la hauteur dès le début !)

       

        var timer;

        var fct =        function ()

        {

                hActuel  +=       20;     //Augmente la hauteur de 20px (tu peux modifier) tous les 40ms !

				

                objet.style.height     =	 hActuel      +     'px';

				

                if( hActuel > hFinal)

                {

                        clearInterval(timer);   //Arrête le timer

                        objet.style.overflow    =   'inherit';

                }

        };

        fct();



        

		timer = setInterval(fct,40);    //Toute les 40 ms

		

	}else if(objet.style.display == "block"){

		

		var hFinal      =     0;  //Hauteur finale (la hauteur une fois que ça aura fini de déplier !)

        var hActuel     =     200;	 	//Hauteur initiale (la hauteur dès le début !)

       

        var timer;

        var fct =        function ()

        {

                hActuel  -=   20;     //Augmente la hauteur de -20px (tu peux modifier) tous les 40ms !

				

                objet.style.height     =	 hActuel      +     'px';

				

                if( hActuel < hFinal)

                {

                        clearInterval(timer);   //Arrête le timer

                        objet.style.overflow    =   'inherit';

						objet.style.display     =   "none";

                }

        };

        fct();



        

		timer = setInterval(fct,40);    //Toute les 40 ms

		



		lien.innerHTML = "+";

		

	}

}

</script>



</head>



<body > //background="index1.jpg"



<br /><br /><br />

<table width="712" height="71" border="10" bordercolor="#990000" bgcolor="#FFFFFF">



  <h1>CERT-CNRST</h1>

  

<hr>

<div id="zone" > Chargement du flux</div>





<br>

<fieldset class="rsslib">

<br /> 
<b>Notice</b>:  Trying to get property of non-object in <b>C:\Program Files\EasyPHP-5.3.6.1\CertMarwan\rsslib.php</b> on line <b>33</b><br /> 
<ul> 
<li><a href="http://www.exploit-db.com/wordpress-timthumb-exploitation/">WordPress TimThumb Exploitation</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> <p style="text-align: justify">One of the biggest blogging platforms, which can easily be extended with vulnerable addons, to support a variety of functions - From CMS's to pretty much anything. Within some web applications, themes may contain variables that refer to dynamic elements, while in others like WordPress - Insecure PHP files used for caching and resizing images, are surprisingly quite common.</p></div></li> 
<li><a href="http://www.exploit-db.com/vbseo-from-xss-to-reverse-php-shell/">vbSEO â¤&#8220; From XSS to Reverse PHP Shell</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> XSS is not a big deal, or is it? On many occasions, I&#8217;ve seen this vulnerability being classified as useless, not serious, and being a low threat. What I&#8217;ve always had in mind is that it&#8217;s only the capabilities of the browser, and the hackers mind which sets the limit for a XSS attack. It [...]</div></li> 
<li><a href="http://www.exploit-db.com/owned-and-exposed/">Owned and Exposed</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> There&#8217;s nothing like having your butt kicked Christmas morning, which is exactly what happened to us today. We were owned and exposed, in true fashion. Initially, the inj3ct0r team took &#8220;creds&#8221; for the hack, which quickly proved false as the original ezine showed up &#8211; and now inj3ct0r (their new site) is no longer online. [...]</div></li> 
<li><a href="http://www.exploit-db.com/google-hacking-database-updates/">Google Hacking Database Updates</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> Since we took up the torch of the Google Hacking Database from Johnny Long, we have introduced some changes that we feel provides a great deal of added value to our database of dorks. To make it easier for our visitors to identify changes in the database, there is a &#8216;New&#8217; graphic that will appear [...]</div></li> 
<li><a href="http://www.exploit-db.com/bypassing-uac-with-user-privilege-under-windows-vista7-mirror/">Bypassing UAC with User Privilege under Windows Vista/7 â¤&#8220; Mirror</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> Introduction I would like to present an exploit of an ambiguous parameter in Windows kernel API that leads to buffer overflows under nearly every version of Microsoft Windows, especially one that can be used as a backdoor to Windows user privilege system as well as User Access Control. The starring API would be RtlQueryRegistryValues, it [...]</div></li> 
<li><a href="http://www.exploit-db.com/fuzzing-vs-reversing-round-2-reversing/">Fuzzing vs Reversing â¤&#8220; Round #2 (Reversing)</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> After a few days of fuzzing, I noticed that I covered a large part of the format (at least the part I found interesting) so I then began reverse engineering the format more thoroughly. I started by mapping out the tag-types and reviewing functions that parse them. After I spent a few hours just poking [...]</div></li> 
<li><a href="http://www.exploit-db.com/fuzzing-vs-reversing-round-1-fuzzing/">Fuzzing vs Reversing â¤&#8220; Round #1 (Fuzzing)</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> I have recently been doing some fuzzing on the Adobe Flash Player. I started by implementing a simple format fuzzer for Flash based on a homegrown framework that I have been developing for awhile. I implemented and executed tests and progressively covered more and more of the format. After a few days, I noticed one of [...]</div></li> 
<li><a href="http://www.exploit-db.com/vbulletin-a-journey-into-0day-exploitation/">vBulletin â¤&#8220; A Journey Into 0day Exploitation</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> The popular vBulletin software is generally a quite secure forum application if you exclude the minimal amount of vulnerable addons. However, when new features are occasionally included, such as Profile Customization, a new vulnerability might be born. In the actual customization feature it is possible to supply color codes such as: #000000, RGB codes like rgb(255, [...]</div></li> 
<li><a href="http://www.exploit-db.com/foxit-reader-stack-overflow-exploit-egghunter/">Foxit Reader Stack Overflow Exploit â¤&#8220; Egghunter Edition</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> Some time ago, when Adobe Reader 0days were dropping left, right, and centre, Foxit Reader was frequently mentioned as a safer alternative to using Adobe. While it may be true that there are not as many exploits available for Foxit, that does not mean that it is invincible. With this in mind, I decided to [...]</div></li> 
<li><a href="http://www.exploit-db.com/google-hacking-database-reborn/">Google Hacking Database Reborn</a>[<a href="javascript:;" onClick="Suite(this)">+</a>] <div id="popup" style="display: none; border: #000000 1px solid; width: 300px;"> The incredible amount of information continuously leaked onto the Internet, and therefore accessible by Google, is of great use to penetration testers around the world.  Johnny Long of Hackers for Charity started the Google Hacking Database (GHDB) to serve as a repository for search terms, called Google-Dorks, that expose sensitive information, vulnerabilities, passwords, and much [...]</div></li> 
</ul> 
 


</fieldset>

</table>

<br />

<blockquote>@Version d'evaluation 	</blockquote>
lundi 29 août 2011 à 14:27:29 | Re : php ( mixe ) javascript

coucou747

Administrateur CodeS-SourceS
Réponse acceptée !
Undefined variable: description in <b>C:\Program Files\EasyPHP-5.3.6.1\CertMarwan\page_test_link - Copie.php</b> on line <b>15</b><br />


je crois que tout est dit.
lundi 29 août 2011 à 14:44:38 | Re : php ( mixe ) javascript

medanass




Merci Alors vous proposé de mettre tous dans le même fichier .
Merci infiniment je vais essayé

1 2 3

Cette discussion est classée dans : javascript, php, color, orange, mixe


Répondre à ce message

Sujets en rapport avec ce message

PHP et JavaScript [ par begueradj ] Bonjour, J'ai une question toute bête car pour l'instant, je suis bête: Je voudrais créer un bouton sur une page dont l'extension est ".PHP", pour qu Reponse Formulaire Php en Pop Up [ par nini2tignes ] Bonjour tout le monde, je recherche parfois des choses vraiment bête. j'ai un formulaire de contact Php qui fonctionne pas mal. [b]Lorsque qu'il est Possibilité d'inclure du javascript dans du php? [ par Nagasashi ] Bonjour bonjour, Je me permet de poster ici, car, étant novice en la matière,j'ai un petit soucis sur m Upload d'images : prévisualisation avant upload avec php+ajax+javascript [ par amewole ] Bonjour à vous tous, Je suis à la recherche d'un script php+ajax+javascript permettant de faire un preview des images avant le upload c'est à dire qu Récupération d'inbox créées par JS en PHP [ par CSIBern ] Bonjour à tous, Voilà mon problème, j'ai créé des inbox qui s'implémentent et se remplissent automatiquement suivant le code suivant : [color=blue]n Quelle action pour mon formulaire? [ par padymen ] Bonjour, j'ai écrit un formulaire pour créer un fichier XML et un formulaire pour alimenter une base de donnée. Comme les champs ne sont pas disjoints Caracteres spéciaux [ par perles ] [b]Bonjour,[/b][size=200][/size] &MarqueDesign= J'envoie depuis un programme resultats.php le MarqueDesign dans un programme detail.ph. Le progra javascript et PHP [ par cedlao ] Bonjour, J'ai crée des champs dynamiquement sur click d'un bouton en javascript. Dans InnerHtml je défini le Name en fonction du nombre de champs crée combobox dynamique html php javascript [ par lilj ] Salut tout le monde !! j'ai besoin d'aide. Voila je voudrais créer un formulaire composé de 2 combobox en fonction d'une base de données. La 1ere, j' php, javascript, css html [ par dsbr2008 ] Salut tout le monde, j'ai un petit problème c'est qu'à partir d'une page web que je veux l'imprimer, oui ca marche l'impression, sauf qu'en tête et pi


Nos sponsors


Sondage...

Comparez les prix

CalendriCode

Mai 2012
LMMJVSD
 123456
78910111213
14151617181920
21222324252627
28293031   

Consulter la suite du CalendriCode

Photothèque

A découvrir



 
Développement réalisé par Nicolas SOREL (Nix) avec l'aide de : Cyril DURAND et Emmanuel (EBArtSoft), Merci à Vincent pour ses précieux conseils.
CodeS-SourceS.com© Toute reproduction même partielle est interdite sauf accord écrit du Webmaster
CodeS-SourceS.com© est une marque déposée tous droits réservés

Google Coop CodeS-SourceS Google Coop CodeS-SourceS
Temps d'éxécution de la page : 0,624 sec (3)

Nous contacter | Annoncer sur CodeS-SourceS | Mentions légales