-
Posts
40 -
Joined
-
Last visited
Everything posted by CBG
-
Hi, I currently have the below code to check the textarea box. if (preg_match("#^[a-zA-Z0-9 .,?_/'!£$%&*()+=-]+$#", $msgs)) { // Everything ok. Do nothing and continue } else { echo "Message is not in correct format.<br>You can use a-z A-Z 0-9 . , ? _ / ' ! £ $ % * () + = - Only"; However the problem is, when putting enter in the message if fails For example if I put the message It fails and echo the else But if I put It is ok Could someone tell me what extra bit of code I need to add to the preg_match and where. Thanks for the help
-
Hi, I am needing some code, so that I can put a limit of the amount of wrong logins. For example ather 3 login, they get block for 10 minutes. I would like it to run via PHP/MySQL. I already have a login script that is being used by the script I am using which is a PHP/MySQL script
-
Thanks I have also sorted the / in the $website bit by changing the delimiter. I changed it to if (preg_match('#^[a-zA-Z0-9._/-]+$#', $website)) {
-
Hi, I am using preg_match to check the email address, but I also want to check for With @ or + like: myemail+email.com I currently got if (preg_match('/^[^@]+@[a-zA-Z0-9._-]+\.[a-zA-Z]+$/', $email)) { But it give falso if + is in the email, what bit do I change? Also I need to allow / in the below preg_match So I can have a input of www.mysite.co.uk/mypage if (preg_match('/^[a-zA-Z0-9 ._-]+$/', $website)) { When I put / in the allow I get Warning: preg_match() [function.preg-match]: Unknown modifier '_' in .........
-
Hi, I have a function with the below code in it and I want to have multiple Return values and am unsure how to do it if ( $one == 'yes') { echo 'One Appear'; } else { echo 'One Does not Appear<br>'; $one_bot = 0; } if ( $two == 'yes') { echo 'Two Appear'; } else { echo 'Two Does not Appear<br>'; $two_bot = 0; } if ( $three == 'yes') { echo 'Three Appear'; } else { echo 'Three Does not Appear<br>'; $three_bot = 0; } Now if I put the below it returns 1 0 (zero) in the browser and not all 3 return $one_bot; return $two_bot; return $three_bot; So it seems to be it not working like that, so should I put it in an array like $list = array($one_bot, $two_bot, $three_bot); return $list; ? If not how should I do it?
-
count how many times the same username is in the database
CBG replied to CBG's topic in PHP Coding Help
Thanks for all your replies I went with this one in the end. -
Hi, I currently have the below code. $query = "select * from db WHERE username LIKE '$username'"; $result = mysql_query($query); while ($r = mysql_fetch_array($result)) { $user = $r["username"]; $user_seen = $r["username_seen"]; } Now what I would like to do is count and return the number how many times the same username is in the database, as well as return username How would I do this with the above code?
-
Hi, I am making a Modifiaction for a script and I am using the PHP code $_SERVER['SCRIPT_FILENAME'] and $_SERVER['REMOTE_ADDR'] I would like it to work with both Linux and Windows Hosting. Can some tell me if it is suppoted before Windows 2003 and IIS 6? I have tested this on a Windows 2003 Server Hosting, running IIS 6, so I am presume it will be support on newer versions.
-
Hi, I have the below bit code which works fine, however I would like to change it, to allow more files to be viewed, like it does with /offline.php I would like to allow /offline.php and /admin/offline.php and /admin/offlinemodify.php if ($offline['status'] == 'offline') { if (strcmp($_SERVER['PHP_SELF'],"/offline.php") != 0) { if ($offline['iporlogin'] == 'IP') { $ip = $_SERVER['REMOTE_ADDR']; if ($ip == $offline['ip1'] || $ip == $offline['ip2']) { } else { if ( $offline['status'] == 'offline' ) { header ('location: /offline.php'); } } } else { $username = $_SESSION['UserName']; if ($username == $offline['username']) { } else { if ( $offline['status'] == 'offline' ) { header ('location: /offline.php'); } } } } } Line 1: Check to see if it is in Offline Mode Line 2: Allow access to /offline.php (this is the bit I want to change to allow more files) Line 3-8: If offline is in IP Mode check IP Line 9: Else if not in IP mode but is offline do Login code Line 10-14: Login Mode check for user/pass access Line 15-17: Closing Tags
-
This, is just a quick way to test, of what I want the IP's will be set in the database from the admin or the script I am using. So there should be no security risk.
-
Will this do it <?php $offip1 = 'XXX.XXX.XXX.XXX'; //Offline IP 1 allowed to view $offip2 = 'XXX.XXX.XXX.XXX'; //Offline IP 2 allowed to view $offstatus = 'offline'; //Offline-Online Status $allow[0]=$offip1; $allow[1]=$offip2; if (in_array($_SERVER['REMOTE_ADDR'],$allow)) { echo 'You are viewing when in offline mode'; }else{ if ( $offstatus == 'offline' ) { header ('location: offline.php'); } } ?>
-
Hi, I want the below code to check for 2 IP's that are allowed. This is the code I got so far. The below code allows 1 IP to view, however I would like to have 2 IP's to be able to view and not directed to offline.php <?php $offip1 = 'XXX.XXX.XXX.XXX'; //Offline IP 1 allowed to view $offip2 = 'XXX.XXX.XXX.XXX'; //Offline IP 2 allowed to view $offstatus = 'offline'; //Offline-Online Status if (strcmp($_SERVER['PHP_SELF'],"/offline.php") != 0) { if ( $offip1 != getenv('REMOTE_ADDR')){ if ( $offstatus == 'offline' ) { header ('location: offline.php'); } } } echo 'You are viewing when in offline mode'; ?>
-
Thanks, will give it a try later.
-
Yes that what I mean.
-
Hi, I want to be able to call a database table that will be setup in another file called init.php, and be able to call it from any PHP file that has init.php included. Table is called abc_offline and has columns a,b,c in it. What I am wanting is to be able to call it from any PHP file by: $offline['a'] for example How do I do this, I been told I need an array in init.php but I don't know how to do this. At the moment the init.php has the DB conncect details and some calls to other tables. Column a in abc_offline would have the value as offline or online So what I want to do is, in any file be able to have This code could be in any file if ( $offline['a'] == 'online' ) { header ('location: index.php'); } OR if ( $offline['a'] == 'offline' ) { header ('location: offline.php'); } I need the code to go in the init.php as I haven't got a clue what to put, to be able to able to call the table and assign $offline to any file.