le 01/11/2011 à 00:39
Ajouter une condition à un formulaire
Non, sinon on ne payerai pas à 500€/jour et ça ne recruterai pas à tour de bras des développeurs PHP dans tout les sens ;)
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type='application/javascript'>
window.timer = (function()
{
var impl = { } ;
impl.reference = null;
impl.start = function() { impl.reference = new Date };
impl.setReference = function() { impl.reference = arguments[0] } ;
impl.getElapsedTime = function()
{
var now = new Date ;
var elapsed = Math.round((now.getTime() - this.reference.getTime()) / 1000) ;
return { days: 0
, hours: 0
, minutes: 0
, seconds: elapsed
} ;
} ;
var proto = function() {};
proto.prototype = impl;
return proto ;
})();
var init = function()
{
var clock = new timer ;
clock.setReference(new Date) ;
var element = document.getElementById('clock') ;
var fn = function() {
var elapsed = clock.getElapsedTime() ;
element.textContent = elapsed.seconds + ' secondes' ;
setTimeout(fn, 1000);
}
fn();
}
addEventListener('load', init) ;
</script>
</head>
<body>
Depuis <span id='clock'></span>
</body>
</html>
<?php
$id_membres = $_COOKIE['elvme'];
$selection_membres = mysql_query("SELECT * FROM mcroc_membres WHERE id='$id_membres' LIMIT 1");
<script type='text/javascript'>
//<!--
// -->
</script>
<?php
function redirect($target, $stop = true)
{
header('Location: '.$target) ;
$stop and exit();
}
redirect('index.php') ;