Ho scritto in php un programma che scrive html e nel form vorrei controllare gli input text richiamando funzioni javascript, al verificarsi dell'evento (onblur, onclick..).
ho fatto:
echo " ...
<head>
<meta content='text/html; charset=ISO-8859-1' http-equiv='content-type'>
<link rel='stylesheet' href='ute_perso.css' type='text/css' />
<script type=\"text/javascript\" src=\"routine.js\"> </script>
</head> ...
dove routine.js contiene le funzioni che richiamero' nel form:
...
echo "
<form method=\"POST\" action=\"risadmin.php\" name=\"cu_campi\">
<table width='98%' border=\"0\" cellspacing=\"1\" cellpadding=\"1\">
<tr>
<td><input type=\"text\" name=\"cu_nome\" value=\"$cl_utenti->g_nome\" size=\"30\" maxlength=\"20\"
onfocus=\"ctrdesc('Nome')\" onblur=\"ctrdesc('Nome')\"></td> ...
Il problema è che non esegue le funzioni!
Ringrazio per l'aiuto.
Carlo