Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

BezzzZ

Members
  • Joined

  • Last visited

  1. Hi there RD, look at this bit here : $name = (isset($_POST['name'])) ? $_POST['name'] : false; $email = (isset($_POST['email'])) ? $_POST['email'] : false; $subject = (isset($_POST['subject'])) ? $_POST['subject'] : false; $message = (isset($_POST['message'])) ? $_POST['message'] : false; $spam_field = (isset($_POST['captcha'])) ? $_POST['captcha'] : false; $user_agent = (isset($_SERVER['HTTP_USER_AGENT'])) ? $_SERVER['HTTP_USER_AGENT'] : false; $ip_address = (isset($_SERVER['REMOTE_ADDR'])) ? $_SERVER['REMOTE_ADDR'] : false; $find = (isset($_POST['find'])) ? $_POST['find'] : false; $province = (isset($_POST['province'])) ? $_POST['province'] : false; from what I can see, you are not appending the extra information to the message. try something like this : $name = (isset($_POST['name'])) ? $_POST['name'] : false; $email = (isset($_POST['email'])) ? $_POST['email'] : false; $subject = (isset($_POST['subject'])) ? $_POST['subject'] : false; $message = (isset($_POST['message'])) ? $_POST['message'] : false; $spam_field = (isset($_POST['captcha'])) ? $_POST['captcha'] : false; $user_agent = (isset($_SERVER['HTTP_USER_AGENT'])) ? $_SERVER['HTTP_USER_AGENT'] : false; $ip_address = (isset($_SERVER['REMOTE_ADDR'])) ? $_SERVER['REMOTE_ADDR'] : false; $find = (isset($_POST['find'])) ? $_POST['find'] : false; $province = (isset($_POST['province'])) ? $_POST['province'] : false; // APPENDING ADITIONAL INFORMATION TO THE MESSAGE $message = 'REFERAL SOURCE : '.($find?$find:'none selected').PHP_EOL.PHP_EOL. 'PROVINCE : '.($province?$province:'none selected').PHP_EOL.PHP_EOL. $message; you need to give the select options values : <select name="find" id="find"> <option>Where did you find us</option> <option value="Google">Google</option> <option value="Facebook">Facebook</option> <option value="Craigslist">Craigslist</option> <option value="A Friend">A Friend</option> </select> Note that you will get the set value of the inputs in the province checkboxes e.g British Columbia will send the number 1 perhaps change there values to the text you would like sent. Hope this all helps a little
  2. Hi There, I am a PHP dev from sunny South Africa. Spend some time in the land up north where it never stops raining -> England and Wales. working on my own projects. hoping to help and be helped wherever needed Hope to chat soon.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.