Code: Select all
<form action="$NewPost->buildPost()" method="post">
Could anyone tell me how i could i use a member function as part of a forms action? Any help would be greatly appreciated!
Thanks,
Martin.
Moderator: General Moderators
Code: Select all
<form action="$NewPost->buildPost()" method="post">
Code: Select all
<form action="$NewPost->buildPost()" method="post">Code: Select all
<form action="<?php echo $NewPost->buildPost(); ?>" method="post">