Hey..
So I was wondering how I can check the format of a string (in php).
My AJAX code will pass in either just a plain text string or a string which is in the format ###-#####....is there a way to check like:
if(projectID like ###-#####){
do something;
}else{
yeah;
}
Thanks!