Posts by RRV • 519 points
54 posts
-
1
votes1
answer106
viewsQ: Manipulate event with Jquery when form and link are generated automatically
Jquery does not work when the form or a link is automatically generated. Example below: This example works. <a id='btnTreatInvite' class='btn btn-primary btn-sm fa fa-check'…
-
0
votes2
answers133
viewsQ: Select multiple lines with PHP JSON
I’m using SELECT to collect multiple lines from my database. Using the query format below I have the expected result. while ($this->result = $this->pQuery->fetch(PDO::FETCH_ASSOC)) {…
-
2
votes2
answers188
viewsA: Data entry validation allowing HTML TAG
I created the function below to save the user data, did some tests and managed to run the filter and save successfully. function fDescribe() { functions::startSession(); if($_POST['token'] ==…
-
4
votes2
answers188
viewsQ: Data entry validation allowing HTML TAG
Need to do a validation, always valid on the client side/JS and server/PHP, and allow the user to type some Tags to format the final result, any tips how to do this? Better use a field of the kind…