A
Anonymous
Guest
are you able to embed a variable in a new variable even if this new variable also consists of other things?
For example:
the above code gives me:
Parse error : parse error, unexpected T_VARIABLE
so is it possible to stick $country_number in $search with all that other stuff?
For example:
Code:
$search_for_string = '<a href=\"conShowCountry.asp?CountryID='.$country_number.'\">';
$data = explode($search_for_string,$source);
$searched_source = $data[1];
the above code gives me:
Parse error : parse error, unexpected T_VARIABLE
so is it possible to stick $country_number in $search with all that other stuff?