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.

silvers

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    silvers reacted to webdeveloper93 in My secure contact script v1.5   
    Well before i continued anymore on my script i thought i would get the community to test it out its a form mailer called Rizo contact form mailer v1.5 its very useable now except i have not finished all the features all though i will list a few features below.
     
     
     

    1.Known robot blocker
    2.Header/javascript injection protection
    3.Bad word blocker
    4.Changeable settings from settings file
    5.Spam word filter
    6.Basic captcha and recaptcha
    7.Easy to edit language pack
    8.Ip address blocker
    9.And more that i won't list currently
     
    EDIT:Please note i've included both recaptcha keys private and public for you to be able to test recaptcha these keys will only work on localhost so be sure to sign up for your own keys once you put the contact form online you may change these keys to your own keys in the settings.php file
     
     
    Anyways just test it out and let me know what u think or what i need to fix, to use the form just fill in your mailing info in settings.php cheers if you like my work feel free to give me a +1
    Rizo Contact v1.5.zip
  2. Like
    silvers reacted to webdeveloper93 in My secure contact script v1.5   
    Thanks
     
    EDIT: I will keep you updated with any changes or updates on the script through this post
  3. Like
    silvers reacted to webdeveloper93 in this contact form is ALMOST WORKING!   
    <?php $submit = (isset($_POST['submit'])) ? TRUE : FALSE; if(!$submit){ exit("You have not submmitted the form please go back!"); }else{ $name = (isset($_POST['name'])) ? $_POST['name'] : FALSE; $email = (isset($_POST['email'])) ? $_POST['email'] : FALSE; $email_check = "/\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b/i"; $errors = array(); if(!$name){ $errors[] = "Please enter your name!"; } if(!$email){ $errors[] = "Please enter your email"; } if($email){ if(!preg_match($email_check,$email)){ $errors[] = "The email you entered is not valid!"; } } if(count($errors) > 0){ foreach($errors AS $error){ echo "$error <br />"; } }else{ $to = "Youremail@youremail.com"; $subject = "Your subject"; $email_content = " Name: ".$name."\n\n E-mail: ".$email." "; $header = "From: <$to>"; if($mail = mail($to,$subject,$email_content,$header)){ echo "Email has been sent thank you!"; }else{ echo "Could not send email!"; } } } ?>
     
     
    Ok there you go should work not tested yet if you have probs let me know
     
    You may also try my more secure contact form here if you like cheers
     
    Rizo Contact Form Mailer v1.5
  4. Like
    silvers reacted to webdeveloper93 in this contact form is ALMOST WORKING!   
    try changeing this line
     

    if(@mail($your_email,$email_subject,$email_content))
     
    to
     
     

    if($mail = mail($your_email,$email_subject,$email_content,"From: <youremail@yourdomain.com>"))
  5. Like
    silvers reacted to webdeveloper93 in this contact form is ALMOST WORKING!   
    Yea try removing that or check your spam folder see if its going there
  6. Like
    silvers reacted to webdeveloper93 in this contact form is ALMOST WORKING!   
    Yea sure bro just do a variable for each field of ur form. like for a email and name field you would do
     

    $name = (isset($_POST['name'])) ? $_POST['name'] : FALSE; $email = (isset($_POST['email'])) ? $_POST['email'] : FALSE;
     
    And then in your message that you send to your email you would do this
     

    $email_content = "Name: ".$name.""; $email_content .= "Email: ".$email."";
     
    Hope this helped if it did +1 me if you like cheers

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.