x00
MVPx00 MVP
Reactions
-
Re: Adding array to hidden form data
library/core/class.form.php public function EscapeString($String) { $Array = FALSE; if (substr($String, -2) == '[]') { $String = substr($String, 0, -2); $Array = TRUE; } $Return = urlencode… (View Post)1 -
Re: Adding array to hidden form data
I use echo $this->Form->TextBox('MetaName[]',array('class'=>'InputBox MetaName')); echo $this->Form->TextBox('MetaValue[]',array('class… (View Post)2 -
Re: Logout from forum, when user logs out from my page
well you could simply point to this in a hidden iframe. (View Post)2 -
Re: Logout from forum, when user logs out from my page
this would need to be done after you have killed the first session. (View Post)1 -
Re: Logout from forum, when user logs out from my page
You site has a redirection that goes to the other sites logout after login out, and in the target of that login url it sends it back to the site. it is a bit roundabout but could work. You can't… (View Post)1
