Jump to content

Search the Community

Showing results for tags 'ipaddress'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 2 results

  1. Hello, The below is the code i have i want to track down the ipaddress of the people who ever subscribed to my list. I am beginner in php kindly do the needful. Thanks a lot in advance. <!-- Subscribe form --> <form action="subscribe/NLprocess.php" method="post"> <h6 class=footer-widget-heading>Enter your email:</h6> <div class="input"> <input type="text" class="button" name="email" placeholder="Email address"> <input type="submit" class="button" id="submit" value="Subscribe"> </div> </form> <!-- End subscribe form --> The processing file NLprocess.php ---- $emailmanager = 'smallstamps@gmail.com'; // SECOND: // save this file, and close it. Thank you! error_reporting(0); $email = trim($_POST['email']); $Ok = ereg("^([a-zA-Z0-9_\.-]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$", $email); if ($Ok) { mail($emailmanager,'Subscribe','','From: '.$email); if(!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$",$UNameFrm)) { ?> <script language = 'javascript'> alert('Thank you, Now you Subcribed to smallstamps.com Updates'); history.go(-1); </script> <? exit(); } } else { if(!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$",$UNameFrm)) { ?> <script language = 'javascript'> alert('Sorry, please provide a valid Email address.'); history.go(-1); </script> <? exit(); } } ?> Kindly let me know what i have to do to track the ip address.
  2. Hey there, The company I worked for would like to put in security to our login page (we have a very niche market and can guarantee the clients who will be logging in.) in which when the user registers their account, it takes the IP address and registers it to that account, that way that account can only be accessed via that IP address. (can also guarantee with 99.9% that the IP addresses will stay the same) I am using usercake, but just need some help adding in the IP address validation. I know that: $ip=$_SERVER['REMOTE_ADDR']; will show the ip address when they log in. I know the theory just not how to do it. My register script is: <?php require_once("models/config.php"); if (!securePage($_SERVER['PHP_SELF'])) { die(); } //Prevent the user visiting the logged in page if he/she is already logged in if (isUserLoggedIn()) { header("Location: account.php"); die(); } //Forms posted if (!empty($_POST)) { $errors = array(); $email = trim($_POST["email"]); $username = trim($_POST["username"]); $displayname = trim($_POST["displayname"]); $password = trim($_POST["password"]); $confirm_pass = trim($_POST["passwordc"]); $captcha = md5($_POST["captcha"]); if ($captcha != $_SESSION['captcha']) { $errors[] = lang("CAPTCHA_FAIL"); } if (minMaxRange(5, 25, $username)) { $errors[] = lang("ACCOUNT_USER_CHAR_LIMIT", array( 5, 25 )); } if (!ctype_alnum($username)) { $errors[] = lang("ACCOUNT_USER_INVALID_CHARACTERS"); } if (minMaxRange(5, 25, $displayname)) { $errors[] = lang("ACCOUNT_DISPLAY_CHAR_LIMIT", array( 5, 25 )); } if (!ctype_alnum($displayname)) { $errors[] = lang("ACCOUNT_DISPLAY_INVALID_CHARACTERS"); } if (minMaxRange(8, 50, $password) && minMaxRange(8, 50, $confirm_pass)) { $errors[] = lang("ACCOUNT_PASS_CHAR_LIMIT", array( 8, 50 )); } else if ($password != $confirm_pass) { $errors[] = lang("ACCOUNT_PASS_MISMATCH"); } if (!isValidEmail($email)) { $errors[] = lang("ACCOUNT_INVALID_EMAIL"); } //End data validation if (count($errors) == 0) { //Construct a user object $user = new User($username, $displayname, $password, $email); //Checking this flag tells us whether there were any errors such as possible data duplication occured if (!$user->status) { if ($user->username_taken) $errors[] = lang("ACCOUNT_USERNAME_IN_USE", array( $username )); if ($user->displayname_taken) $errors[] = lang("ACCOUNT_DISPLAYNAME_IN_USE", array( $displayname )); if ($user->email_taken) $errors[] = lang("ACCOUNT_EMAIL_IN_USE", array( $email )); } else { //Attempt to add the user to the database, carry out finishing tasks like emailing the user (if required) if (!$user->userCakeAddUser()) { if ($user->mail_failure) $errors[] = lang("MAIL_ERROR"); if ($user->sql_failure) $errors[] = lang("SQL_ERROR"); } } } if (count($errors) == 0) { $successes[] = $user->success; } } echo " <?php include 'models/site-templates/default.css'; ?> </style> <body> <div id='header'> <div id='top'> <div id='logo'> </div> </div> <div id='default'> "; include("left-nav3.php"); echo " </div> <div id='output'> "; echo resultBlock($errors, $successes); echo "<div id='details'> Please complete the form, once you have finished our friendly admin will need to approve you</div> <div id='regbox'> <form name='newUser <center> <p> <label> User Name </label> </br> <p> <input type='text' name='username' /> </p> </center> <center> <p> <label> Display Name </label> </br> <input type='text' name='displayname' /> </p> </center> <center> <p> <label> Password </label> </br> <input type='password' name='password' /> </p> </center> <center> <p> <label> Confirm </label> </br> <input type='password' name='passwordc' /> </p> </center> <center> <p> <label> Email </label> </br> <input type='text' name='email' /> </p> </center> <center> <p> <label> Security Code </label> </br> <img src='models/captcha.php'> </p> </center> <center> <label> Enter Security Code </label> </br> <input name='captcha' type='text'> </p> </center> <center> <label> <br> <input type='submit' value='Register'/> </p> </center> </form> </div> </div> </body> </html> "; ?> I realise that its a long script, I just need to take the IP address and add it to the table under the column IP, then when the login is done it checks the IP to make sure. P.s. I am very new to PHP, hence my use of usercake I haz free cookies to anyone who helps?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.