Originally posted by dicamille
I need to strip the @ symbol from a value in a textbox that i am using in a sql query....help!!!
so do u want to strip @ from email address thats retrieved from SQL db?
... then just add this to your code
$vartemp = mysql_fetch_row($datatest);
str_replace("@","","$vartemp[0]");
Assuming that your first column is email ID of user
this would do something like
me@tommynanda.com to metommynanda.com
If this isnt wat u looking for... give more details
TommYNandA