![]() |
install | documentation | examples | articles | changelog 16.6.0 released on Mar 08, 2023 | articles updated on Mar 20, 2023
|
p-path
p-path outputs a URL application path (see request_URL), i.e. the leading path segment(s) prior to request name.p-path provides the leading part of a URL path after which request name and its parameters can be specified. It is used in HTML forms and URLs (either for HTML or API) to refer back to the same application./<app name>
In HTML forms:@<a href="<<p-path>>/add-note">Add Note</a>
... <form action="<<p-path>>/add-note" method="POST" enctype="multipart/form-data"> ...