There are many problems in your code.
Your current problem is not SQL related but PHP syntax related. As you can see even from the syntax highlighting, double quotes breaks your string.
$sql = "SELECT * FROM myTable WHERE text='<span class="myclass">Here is my text</span>'";
So, you have to either escape delimiting quotes,
$text = "<span class=\"myclass\">Here is my text</span>";
or use different quotes
$text = '<span class=\"myclass\">Here is my text</span>';
Next your problem is SQL related. You cannot put strings into query as is. you have to escape it for the query and only then put it into query.
$text = '<span class=\"myclass\">Here is my text</span>';
$text = mysql_real_escape_string($text);
$sql = "SELECT * FROM myTable WHERE text='$text'";
Finally, you're running your query wrong. Do not write horizontally, write vertically. Put operators one under another, not in one grosse shange. And akways check query result to be informed of all possible errors:
$text = '<span class=\"myclass\">Here is my text</span>';
$text = mysql_real_escape_string($text);
$sql = "SELECT * FROM myTable WHERE text='$text'";
$res = mysql_query($sql) or trigger_error(mysql_error()." in ".$sql);