Hi;

i have a string and I want to set it as a variable name.

like tahat

i have string like: "string";

how can i get variable $string;

I suppose you are trying to do the following:

$variable = "some value";

So if you wish to assign "string" as $string, simply do the following:

$string = "string";


--
Kyle Gibson
admin(at)frozenonline.com
http://www.frozenonline.com/


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to