• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Damn Sun cooperation...

okey i have one question..

If i have a code like this in my script section on a html page ...

function createInput(id,value) {
return "Period "+ id +" : <input type='text' name='period' onChange='javascript:saveValue("+ id +",this.value)' value='"+ value +"'>"
}

then I can't pass the value of this form namely the 'period' in my php page like for example $_post[period];

even if, lets say i added the <form method="post"> inside there.
is it possible to do so.
 
If you change your form method to GET, what is the url that the browser sends to your php page?

What is the entire html document after your javascript has run? You can usually get that using "View Selection Source" in firefox.
 
Back
Top