Visualizzazione dei risultati da 1 a 3 su 3

Discussione: Segni zodiacali...

  1. #1
    Utente di HTML.it L'avatar di ober
    Registrato dal
    Apr 2003
    Messaggi
    551

    Segni zodiacali...

    Ciao...

    non è che qualcuno di voi ha un piccolo "snip" di codice che restituisca il segno zodiacale dando la data di nascita?

    Lo ho fatto una volta con un select case, solo che non riesco più a trovarlo e non ho proprio tempo di andare a rivedermi le date dei vari segni...

    Please... se qualcuno ce ne ha uno già pronto mi farebbe un grandissimo favore...


    Many many thanks!

  2. #2
    codice:
    <%
    questaPagina = request.serverVariables("PATH_INFO")
    submit = request.serverVariables("REQUEST_METHOD") = "POST"
    errore = false
    
    	if submit then
    	
    		dataDiNascita = request.form("dataDiNascita")
    		
    			if isDate(dataDiNascita) then
    			
    				giornoDiNascita = datePart("d",dataDiNascita)
    				meseDiNascita = datePart("m",dataDiNascita)
    				
    					if meseDiNascita = 3 then
    					
    						if giornoDiNascita > 20 then
    						segnoZodiacale = "Ariete"
    						else
    						segnoZodiacale = "Pesci"
    						end if
    					
    					end if
    					
    					if meseDiNascita = 4 then
    					
    						if giornoDiNascita > 20 then
    						segnoZodiacale = "Toro"
    						else
    						segnoZodiacale = "Ariete"
    						end if
    						
    					end if
    						
    					if meseDiNascita = 5 then
    					
    						if giornoDiNascita > 21 then
    						segnoZodiacale = "Gemellli"
    						else
    						segnoZodiacale = "Toro"
    						end if
    						
    					end if
    						
    					if meseDiNascita = 6 then
    					
    						if giornoDiNascita > 21 then
    						segnoZodiacale = "Cancro"
    						else
    						segnoZodiacale = "Gemelli"
    						end if
    						
    					end if
    					
    					if meseDiNascita = 7 then
    					
    						if giornoDiNascita > 22 then
    						segnoZodiacale = "Leone"
    						else
    						segnoZodiacale = "Cancro"
    						end if					
    					
    					end if
    			
    					if meseDiNascita = 8 then
    					
    						if giornoDiNascita > 23 then
    						segnoZodiacale = "Vergine"
    						else
    						segnoZodiacale = "Leone"
    						end if					
    					
    					end if
    					
    					if meseDiNascita = 9 then
    					
    						if giornoDiNascita > 23 then
    						segnoZodiacale = "Bilancia"
    						else
    						segnoZodiacale = "Vergine"
    						end if					
    					
    					end if
    			
    					if meseDiNascita = 10 then
    					
    						if giornoDiNascita > 23 then
    						segnoZodiacale = "Scorpione"
    						else
    						segnoZodiacale = "Bilancia"
    						end if					
    					
    					end if
    			
    					if meseDiNascita = 11 then
    					
    						if giornoDiNascita > 22 then
    						segnoZodiacale = "Sagittario"
    						else
    						segnoZodiacale = "Scorpionei"
    						end if					
    					
    					end if
    			
    					if meseDiNascita = 12 then
    					
    						if giornoDiNascita > 21 then
    						segnoZodiacale = "Capricorno"
    						else
    						segnoZodiacale = "Sagittario"
    						end if					
    					
    					end if
    								
    					if meseDiNascita = 1 then
    					
    						if giornoDiNascita > 20 then
    						segnoZodiacale = "Acquario"
    						else
    						segnoZodiacale = "Capricorno"
    						end if					
    					
    					end if
    			
    					if meseDiNascita = 2 then
    					
    						if giornoDiNascita > 19 then
    						segnoZodiacale = "Pesci"
    						else
    						segnoZodiacale = "Acquario"
    						end if					
    					
    					end if						
    			
    			else
    			
    				errore = true
    				messaggio = "Inserire un data di nascita valida"
    			
    			end if
    	
    	end if
    %>
    <form name="segnoZodiacale" method="post" action="<%=questaPagina%>">
    Inserisci la tua data di nascita: <input type="text" name="dataDiNascita" value="<%=dataDiNascita%>"> <input type="submit" value="INVIA">
    </form>
    <%
    if submit then
    
    	  if not errore then
    %>
    Il tuo segno zodiacale &egrave;: <%=segnoZodiacale%>
    <% else %>
    Errore: <%=messaggio%>
    <% 
    	  end if
    	  
    end if 
    %>

  3. #3
    Utente di HTML.it L'avatar di ober
    Registrato dal
    Apr 2003
    Messaggi
    551
    1000 grazie!

    Mi hai risparmiato un bel po' di lavoro... :metallica

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.