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
https://forums.phpfreaks.com/topic/165721-need-help/
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
https://forums.phpfreaks.com/topic/165721-need-help/#findComment-874228
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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