I am using a template with $includedphp in it.
My plugin is as follows (a form which inserts info into the database).. I need it to include their Username but it isn't grabbing anything
PHP Code:
ob_start();
?>
<body>
<table border="1">
<tr>
<td align="center">Submit Data</td>
</tr>
<tr>
<td>
<table>
<form method="post" action="submitintodatabasesql.php">
<tr>
<td>Username:</td>
<td><text type="varchar" name="req_username" value="$vbulletin->userinfo['username']" size="50">
</td>
</tr>
<tr>
<td></td>
<td align="right"><input type="submit"
name="submit" value="Submit"></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html></center>
<?php
$requestasong = ob_get_contents();
ob_end_clean();
However, the $vbulletin->userinfo['username'] is showing up blank, like this.
How do I call the username?