Jump to content

need help


Danny620

Recommended Posts

i get a error saying Parse error: parse error in C:\xampp\htdocs\val.php on line 13

<?php 

require_once('access/mysqli_connect.php');

//Function val validates form submissions by;
//Striping html tags from from;
//Must be greater than three letters long;

function val($field = false){
			global $dbc;
			$errors = false;

		if(strlen($field) > 3) && (strstr($field)){

		strip_tags($field);
		$username = $field;
		$username = mysqli_real_escape_string($dbc,$username);
		return $username;

		} else {

		$errors = "Field must be greater than three letters long!";

		}

		if($errors){

	echo $errors; }

		}

	//END of val function;
?>

Link to comment
Share on other sites

what i would like to achive is a function that will make sure there is more than 3 letters strip html out take numbers out make sure its safe to insert into a database this is what i got so far. can any one point me in the rigth direction of doing this.

 

<?php 

require_once('access/mysqli_connect.php');

//Function val validates form submissions by;
//Striping html tags from from;
//Must be greater than three letters long;

function val($field = false){
			global $dbc;
			$errors = false;

		if(strlen($field) > 3 && strstr($field)){

		strip_tags($field);
		$username = $field;
		$username = mysqli_real_escape_string($dbc,$username);
		return $username;

		} else {

		$errors = "Field must be greater than three letters long!";

		}

		if($errors){

	echo $errors; }

		}

	//END of val function;
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.