/    Sign up×
Community /Pin to ProfileBookmark

checking for lertters only ???

I am still learning php and I have
done a validation code below.

The problem is – I heard that the ereg is heavy on processor power
so I was thinking how can I do the same thing without the ereg ?

All the fields that i want to test end with TX eg $testTX

I just want to allow letters numbers and spaces and the – sign.

anyone any ideas ???

thanks

[code=php]
if ( ereg(“(TX)”,$field) ){
if ( !ereg( “^[A-Za-z0-9′ -]{1,30}$”,$_POST[$field]) ){
$mess = “yes”;
$message = “Please enter only characters or numbers in the description fields, address fields, reference field and the caption fields.”;
$message1 = “Problem is in $field.”;
require_once (“ag_ctr_add_fm.php”);
exit();
} // endif
} // end if
[/code]

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@NogDogJun 11.2005 — Could use strpos(), but would also match "TXabcd":
[code=php]
if(strpos($field, "TX") !== FALSE) {
[/code]

Could look for it at end, but would not match "TXabcdTX":
[code=php]
if(strpos($field, "TX") == strlen($field) - 2) {
[/code]

I would probably use preg_match():
[code=php]
if(preg_match('/TX$/', $field)) {
[/code]
×

Success!

Help @DaveinLondon spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...