you can use javascript instead..

for example in a jump menu:


function seleccionPerfil(form) {

   if (form.perfil.selectedIndex == 0)

   {

      window.location.href="yourpage1.php";

   }

   

    if (form.perfil.selectedIndex == 1)

   {

      window.location.href="yourpage2.php";

   }

     if (form.perfil.selectedIndex == 2)

   {

      window.location.href="yourpage3.php";

   }

   

} 




On Thu, 13 Mar 2003, Beauford.2002 wrote:

> Hi,
> 
> I have searched around for hours on this and nothing seems to work. I want
> simply to do this....
> 
> if yes -  goto thispage.php
> 
> if no - goto thatpage.php
> 
> Thanks
> 
> 
> 
> 

-- 
++++++++++++++++++++++++++++++++
David Elías Sánchez Vásquez
Bachiller en Educación PUCP
[EMAIL PROTECTED]
telf. (51)-1-5255601
++++++++++++++++++++++++++++++++


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to