Search results

  1. I

    Are their any guides on how I can incorperate HTML/CSS in PHP?

    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...
  2. I

    php multi dimension array?

    Hi everyone! i am creating array with mysql query results ------------------------------------------------------------------------- function user_info() { dbconnect(); $query = "SELECT * FROM models"; $result = mysql_query($query)...
Back
Top