This topic is locked
[SOLVED]

 Things I would like to change

7/14/2018 8:09:31 AM
PHPRunner General questions
gehrenfeld author

There are a few things I would like to change on my website, built with PHPRunner 9.8

  1. Add a register button next to the login button.
  2. Add a message in a page that instructs the user what to do in that page.
  3. Show the search option box on the same page as the list of recipes rather than having to click on the wheel.
  4. I have the guest account option turn on because I want a default page showing when anyone comes to my site without having to log in. But when you click on the login button it shows login as guest, Would like to remove that.
    Help on anyone of these would be appreciated.
    Gary

HJB 7/14/2018



There are a few things I would like to change on my website, built with PHPRunner 9.8

  1. Add a register button next to the login button.
  2. Add a message in a page that instructs the user what to do in that page.
  3. Show the search option box on the same page as the list of recipes rather than having to click on the wheel.
  4. I have the guest account option turn on because I want a default page showing when anyone comes to my site without having to log in. But when you click on the login button it shows login as guest, Would like to remove that.
    Help on anyone of these would be appreciated.
    Gary



To 1) https://xlinesoft.com/phprunner/docs/user_login_settings.htm

To 2) https://xlinesoft.com/phprunner/docs/page_elements.htm - 3.User message. The special element on which place a message may be inserted. It is allowed to add a message only to some pages where users may need to get some notification, e.g. notify a user about unsuccessful login.

To insert the message, go to the Events page, select an event with &message parameter in the function definition (e.g. Login page: Before login event, Add page: Before record added event etc.) and add the following code:

$message="Type your message here!";

yellowbulbNote: The message will be displayed on the web page in place of "message" element.

To 3) https://xlinesoft.com/phprunner/docs/show_dropdown_list_of_us_states.htm

... for inspiration purposes only ...

To 4) http://asprunner.com/forums/topic/23226-auto-log-in-as-guest/

gehrenfeld author 7/14/2018



To 1) https://xlinesoft.com/phprunner/docs/user_login_settings.htm

To 2) https://xlinesoft.com/phprunner/docs/page_elements.htm - 3.User message. The special element on which place a message may be inserted. It is allowed to add a message only to some pages where users may need to get some notification, e.g. notify a user about unsuccessful login.

To insert the message, go to the Events page, select an event with &message parameter in the function definition (e.g. Login page: Before login event, Add page: Before record added event etc.) and add the following code:

$message="Type your message here!";

yellowbulbNote: The message will be displayed on the web page in place of "message" element.

To 3) https://xlinesoft.com/phprunner/docs/show_dropdown_list_of_us_states.htm

... for inspiration purposes only ...

To 4) http://asprunner.com/forums/topic/23226-auto-log-in-as-guest/


Thank you