PDA

View Full Version : variable listing ?


floleb7
02-17-2002, 08:15 PM
is there a listing of variables wich areusing in vb

like :

showthread.php

$test : show your test




if not could be a good things to have ;)

Admin
02-18-2002, 06:32 AM
Stick this code in showthread.php right before the final eval():
echo "<pre>\n";
print_r(get_defined_vars());
echo "</pre>";
exit;