so my website was working yesterday and now for some reason the
session variables arnt saving at certain points
namely when i try this
<form name="ex">
<table align="center" border="0"><tr><td>
<div style="background:#cccccc;border:solid 1px
#000000">
<input type="text" name="nav" value=""
size="50" /><br />
<select name="s" size="1"
onchange="document.ex.nav.value =
document.ex.s.options[document.ex.s.selectedIndex]
.value;document.ex.s.value=''">
<option value=" " selected="selected"></option>
{{var = db.executesql("""SELECT TOP 1000 [ID]
,[Price]
,[Airport-From-Name]
,[Airport-From-State]
,[Airport-From-City]
,[Airport-To-Name]
,[Airport-To-State]
,[Airport-To-City]
FROM [master].[dbo].[Flight]
WHERE [Airport-From-City] = ? AND [Airport-From-State]= ? AND
[Airport-From-Name]= ?;""", (a[1], a[2], a[0]), True)
}}
<ul>
{{for row in var:}}
<option value="{{=row}}">{{=row}}</option>{{pass}}
</ul>
</select></div></td></tr></table>
<input type="submit" />
</form>
after i send something to the server the page refreshes and the
session is cleared
i dont know why this is happening now and it wasnt a day ago
... it was all working fine xD
thanks a lot for any information ^ ^ ill be up at 7ish to respond but
i reeeealy have to sleep :( i have been trying to fix this for a while
now