help !! - HTML/CSS - Programmation
Marsh Posté le 21-07-2004 à 10:35:37
function confsup(nomsupp) { if (confirm('Etes-vous sur de vouloir supprimer '+nomsupp+' ? ')) { window.location='delete.asp?nom=nomsupp'; } } ca marche pas quand il y a un espace dans nomsup!!
Marsh Posté le 21-07-2004 à 10:40:18
Faut remplacer les espaces par des %20 avec une fonction de type urlencode en php.
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 21-07-2004 à 10:35:37
function confsup(nomsupp)
{
if (confirm('Etes-vous sur de vouloir supprimer '+nomsupp+' ? '))
{
window.location='delete.asp?nom=nomsupp';
}
}
ca marche pas quand il y a un espace dans nomsup!!