yes you can...
just create php file and include html tags in it will work..
if you want to echo inside php
for example
output input
1. echo "<input type=\"text\" name=\"username\">";
or
2. echo '<input type="text" name="username">';
The difference betwen 1. and 2. is for 1. i used (") if...
Hi everyone!
i am creating array with mysql query results
-------------------------------------------------------------------------
function user_info()
{
dbconnect();
$query = "SELECT * FROM models";
$result = mysql_query($query)...