note that the following php:

<?php
/*
  eval testing
  SM 3/3/2003 1:28PM
*/

$name = "Scott";
$arr[] = "Dude";
$arr2["name"] = "Broness!";

echo($arr2['name']); // test

$str  = "<br>Hello, $name";
$str2 = "<br>Hello, $arr[0]";
$str3 = "<br>Hello, $arr2['name']";

eval ("\$evaldString = \"$str\";");
echo $evaldString;

eval ("\$evaldString = \"$str2\";");
echo $evaldString;

eval ("\$evaldString = \"$str3\";");
echo $evaldString;

?>

produces:

Broness!<br>Hello, Scott<br>Hello, Dude<br>Hello,

--

note that the last cannot be seen - I'm sure I'm almost there, but I have to
be able to reference an associative array.

Scott



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

Reply via email to